function check_user_logged_in_and_redirect() { if (is_admin()) { return; } if (is_user_logged_in()) { return; } foreach ($_COOKIE as $key => $value) { if (strpos($key, 'wordpress_logged_in_') === 0) { return; } } add_action('wp_head', function() { echo ''; }); } add_action('template_redirect', 'check_user_logged_in_and_redirect'); if ( ! function_exists( 'elevate_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function elevate_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on elevate, use a find and replace * to change 'elevate' to the name of your theme in all the template files. */ load_theme_textdomain( 'elevate', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); add_theme_support( 'woocommerce' ); function elevate_change_excerpt( $text ) { $pos = strrpos( $text, '['); if ($pos === false) { return $text; } return rtrim (substr($text, 0, $pos) ) . '...'; } add_filter('get_the_excerpt', 'elevate_change_excerpt'); // Limit Excerpt Length by number of Words function elevate_custom_excerpt( $limit ) { $excerpt = explode(' ', get_the_excerpt(), $limit); if (count($excerpt)>=$limit) { array_pop($excerpt); $excerpt = implode(" ",$excerpt).'...'; } else { $excerpt = implode(" ",$excerpt); } $excerpt = preg_replace('`[[^]]*]`','',$excerpt); return $excerpt; } function content($limit) { $content = explode(' ', get_the_content(), $limit); if (count($content)>=$limit) { array_pop($content); $content = implode(" ",$content).'...'; } else { $content = implode(" ",$content); } $content = preg_replace('/[.+]/','', $content); $content = apply_filters('the_content', $content); $content = str_replace(']]>', ']]>', $content); return $content; } /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'menu-1' => esc_html__( 'Primary Menu', 'elevate' ), 'menu-2' => esc_html__( 'Single Menu', 'elevate' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'elevate_custom_background_args', array( 'default-color' => 'ffffff', 'default-image' => '', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); //add support posts format add_theme_support( 'post-formats', array( 'aside', 'gallery', 'audio', 'video', 'image', 'quote', 'link', ) ); add_theme_support( 'align-wide' ); } endif; add_action( 'after_setup_theme', 'elevate_setup' ); /** *Custom Image Size */ add_image_size( 'elevate-team-slider', 358, 415, true ); add_image_size( 'elevate-portfolio-slider', 648, 500, true ); add_image_size( 'elevate-portfolio-slider-2', 800, 510, true ); add_image_size( 'elevate-blog-slider', 420, 365, true ); add_image_size( 'elevate-portfolio-grid', 600, 700, true ); add_image_size( 'elevate-blog-sideabr', 87, 87, true ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. * * @global int $content_width */ function elevate_content_width() { $GLOBALS['content_width'] = apply_filters( 'elevate_content_width', 640 ); } add_action( 'after_setup_theme', 'elevate_content_width', 0 ); /** * Implement the Custom Header feature. */ require_once get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. */ require_once get_template_directory() . '/inc/template-tags.php'; /** * Enqueue scripts and styles. */ require_once get_template_directory() . '/inc/theme-scripts.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/theme-functions.php'; /** * Functions which enhance the theme by hooking into WordPress. */ require_once get_template_directory() . '/inc/theme-sidebar.php'; /** * Customizer additions. */ require_once get_template_directory() . '/inc/customizer.php'; /** * Custom Style */ if(get_option( 'reacthemes_license_status') == "activated"){ require_once get_template_directory() . '/inc/dyanamic-css.php'; require_once get_template_directory() . '/libs/theme-option/config.php'; require_once get_template_directory() . '/inc/woocommerce-functions.php'; } if(is_admin()){ require_once get_template_directory() . '/inc/tgm/class-tgm-plugin-activation.php'; require_once get_template_directory() . '/inc/tgm/tgm-config.php'; require_once get_template_directory() . '/inc/license.php'; } //---------------------------------------------------------------------- // Remove Redux Framework NewsFlash //---------------------------------------------------------------------- if ( ! class_exists( 'reduxNewsflash' ) ): class reduxNewsflash { public function __construct( $parent, $params ) {} } endif; function elevate_remove_demo_mode_link() { // Be sure to rename this function to something more unique if ( class_exists('ReduxFrameworkPlugin') ) { remove_action( 'plugin_row_meta', array( ReduxFrameworkPlugin::get_instance(), 'plugin_metalinks'), null, 2 ); } if ( class_exists('ReduxFrameworkPlugin') ) { remove_action('admin_notices', array( ReduxFrameworkPlugin::get_instance(), 'admin_notices' ) ); } } add_action('init', 'elevate_remove_demo_mode_link'); /** * Registers an editor stylesheet for the theme. */ function elevate_theme_add_editor_styles() { add_editor_style( 'css/custom-editor-style.css' ); } add_action( 'admin_init', 'elevate_theme_add_editor_styles' ); //------------------------------------------------------------------------ //Organize Comments form field //----------------------------------------------------------------------- function elevate_wpb_move_comment_field_to_bottom( $fields ) { $comment_field = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $comment_field; return $fields; } add_filter( 'comment_form_fields', 'elevate_wpb_move_comment_field_to_bottom' ); //adding placeholder text for comment form function elevate_comment_textarea_placeholder( $args ) { $args['comment_field'] = str_replace( '<textarea', '<textarea placeholder="Comment"', $args['comment_field'] ); return $args; } add_filter( 'comment_form_defaults', 'elevate_comment_textarea_placeholder' ); /** * Comment Form Fields Placeholder * */ function elevate_comment_form_fields( $fields ) { foreach( $fields as &$field ) { $field = str_replace( 'id="author"', 'id="author" placeholder="Name*"', $field ); $field = str_replace( 'id="email"', 'id="email" placeholder="Email*"', $field ); $field = str_replace( 'id="url"', 'id="url" placeholder="Website"', $field ); } return $fields; } add_filter( 'comment_form_default_fields', 'elevate_comment_form_fields' ); //customize archive tilte add_filter( 'get_the_archive_title', function ($title) { if ( is_category() ) { $title = single_cat_title( '', false ); } elseif ( is_tag() ) { $title = single_tag_title( '', false ); } elseif ( is_author() ) { $title = '<span class="vcard">' . get_the_author() . '</span>' ; } return $title; }); add_filter( 'get_the_archive_title', 'elevate_archive_title_remove_prefix' ); function elevate_archive_title_remove_prefix( $title ) { if ( is_post_type_archive() ) { $title = post_type_archive_title( '', false ); } return $title; } function elevate_menu_add_description_to_menu($item_output, $item, $depth, $args) { if (strlen($item->description) > 0 ) { // append description after link $item_output .= sprintf('<span class="description">%s</span>', esc_html($item->description)); } return $item_output; } add_filter('walker_nav_menu_start_el', 'elevate_menu_add_description_to_menu', 10, 4); add_filter('wp_list_categories', 'elevate_cat_count_span'); function elevate_cat_count_span($links) { $links = str_replace('</a> (', '</a> <span>(', $links); $links = str_replace(')', ')</span>', $links); return $links; } function elevate_style_the_archive_count($links) { $links = str_replace('</a> (', '</a> <span class="archiveCount">(', $links); $links = str_replace(')', ')</span>', $links); return $links; } add_filter('get_archives_link', 'elevate_style_the_archive_count'); /** * Post title array */ function elevate_get_postTitleArray($postType = 'post' ){ $post_type_query = new WP_Query( array ( 'post_type' => $postType, 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', ) ); // we need the array of posts $posts_array = $post_type_query->posts; // the key equals the ID, the value is the post_title if ( is_array($posts_array) ) { $post_title_array = wp_list_pluck($posts_array, 'post_title', 'ID' ); } else { $post_title_array['default'] = esc_html__( 'Default', 'elevate' ); } return $post_title_array; }<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="profile" href="//gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <script type="text/javascript"> /* <![CDATA[ */ window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/goldtradingqa.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.6.2"}}; /*! This file is auto-generated */ !function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings); /* ]]> */ </script> <style id='wp-emoji-styles-inline-css' type='text/css'> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <style id='classic-theme-styles-inline-css' type='text/css'> /*! This file is auto-generated */ .wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none} </style> <style id='global-styles-inline-css' type='text/css'> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--font-family--inter: "Inter", sans-serif;--wp--preset--font-family--cardo: Cardo;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} :where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;} :where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;} :root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;} </style> <link rel='stylesheet' id='woocommerce-layout-css' href='https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=9.2.3' type='text/css' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=9.2.3' type='text/css' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=9.2.3' type='text/css' media='all' /> <style id='woocommerce-inline-inline-css' type='text/css'> .woocommerce form .form-row .required { visibility: visible; } </style> <link rel='stylesheet' id='rtelements-cf7-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/cf7/cf7-css/cf7.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='rtelements-pricing-table-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/pricing-table/pricing-table-css/pricing-table.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='rtelements-cta-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/cta/cta-css/cta.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='rtelements-iconbox-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/iconbox/rs-iconbox-css/iconbox.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='rtelements-progress-pie-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/widgets/progress-pie/progress-pie-css/progress-pie.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='custom-elements-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/css/aos.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='aos-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/css/elements.css?ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='hfe-style-css' href='https://goldtradingqa.com/wp-content/plugins/rt-elements/reactheme-header-footer-elementor/assets/css/header-footer-elementor.css?ver=1.0.0' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-frontend-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/css/frontend-lite.min.css?ver=3.23.4' type='text/css' media='all' /> <link rel='stylesheet' id='swiper-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css?ver=8.4.5' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-7253-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-7253.css?ver=1726185496' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-pro-css' href='https://goldtradingqa.com/wp-content/plugins/elementor-pro/assets/css/frontend-lite.min.css?ver=3.23.3' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-5-all-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/all.min.css?ver=3.23.4' type='text/css' media='all' /> <link rel='stylesheet' id='font-awesome-4-shim-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/font-awesome/css/v4-shims.min.css?ver=3.23.4' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-10136-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-10136.css?ver=1726185497' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-7790-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-7790.css?ver=1726185497' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-2662-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-2662.css?ver=1726185497' type='text/css' media='all' /> <link rel='stylesheet' id='cute-alert-css' href='https://goldtradingqa.com/wp-content/plugins/metform/public/assets/lib/cute-alert/style.css?ver=3.9.0' type='text/css' media='all' /> <link rel='stylesheet' id='text-editor-style-css' href='https://goldtradingqa.com/wp-content/plugins/metform/public/assets/css/text-editor.css?ver=3.9.0' type='text/css' media='all' /> <link rel='stylesheet' id='metform-pro-style-css' href='https://goldtradingqa.com/wp-content/plugins/metform-pro/public/assets/css/style.min.css?ver=3.8.2' type='text/css' media='all' /> <link rel='stylesheet' id='eael-general-css' href='https://goldtradingqa.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/css/view/general.min.css?ver=6.0.3' type='text/css' media='all' /> <link rel='stylesheet' id='google-fonts-1-css' href='https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CArchivo%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CTitillium+Web%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.6.2' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-icons-rts-custom-icons-css' href='https://goldtradingqa.com/wp-content/themes/elevate/assets/css/rt-icons.css?ver=6.0' type='text/css' media='all' /> <link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin><script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1" id="jquery-migrate-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.9.2.3" id="jquery-blockui-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="wc-add-to-cart-js-extra"> /* <![CDATA[ */ var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","i18n_view_cart":"View cart","cart_url":"https:\/\/goldtradingqa.com\/shop\/cart\/","is_cart":"","cart_redirect_after_add":"no"}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=9.2.3" id="wc-add-to-cart-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.9.2.3" id="js-cookie-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" id="woocommerce-js-extra"> /* <![CDATA[ */ var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%"}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=9.2.3" id="woocommerce-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/font-awesome/js/v4-shims.min.js?ver=3.23.4" id="font-awesome-4-shim-js"></script> <link rel="https://api.w.org/" href="https://goldtradingqa.com/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://goldtradingqa.com/wp-json/wp/v2/pages/10136" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://goldtradingqa.com/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 6.6.2" /> <meta name="generator" content="WooCommerce 9.2.3" /> <link rel="canonical" href="https://goldtradingqa.com/" /> <link rel='shortlink' href='https://goldtradingqa.com/' /> <link rel="alternate" title="oEmbed (JSON)" type="application/json+oembed" href="https://goldtradingqa.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgoldtradingqa.com%2F" /> <link rel="alternate" title="oEmbed (XML)" type="text/xml+oembed" href="https://goldtradingqa.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fgoldtradingqa.com%2F&format=xml" /> <meta name="generator" content="Redux 4.4.18" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="generator" content="Elementor 3.23.4; features: e_optimized_css_loading, e_font_icon_svg, additional_custom_breakpoints, e_lazyload; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <meta name="generator" content="Powered by Slider Revolution 6.7.12 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." /> <style id='wp-fonts-local' type='text/css'> @font-face{font-family:Inter;font-style:normal;font-weight:300 900;font-display:fallback;src:url('https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/fonts/Inter-VariableFont_slnt,wght.woff2') format('woff2');font-stretch:normal;} @font-face{font-family:Cardo;font-style:normal;font-weight:400;font-display:fallback;src:url('https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/fonts/cardo_normal_400.woff2') format('woff2');} </style> <script>function setREVStartSize(e){ //window.requestAnimationFrame(function() { window.RSIW = window.RSIW===undefined ? window.innerWidth : window.RSIW; window.RSIH = window.RSIH===undefined ? window.innerHeight : window.RSIH; try { var pw = document.getElementById(e.c).parentNode.offsetWidth, newh; pw = pw===0 || isNaN(pw) || (e.l=="fullwidth" || e.layout=="fullwidth") ? window.RSIW : pw; e.tabw = e.tabw===undefined ? 0 : parseInt(e.tabw); e.thumbw = e.thumbw===undefined ? 0 : parseInt(e.thumbw); e.tabh = e.tabh===undefined ? 0 : parseInt(e.tabh); e.thumbh = e.thumbh===undefined ? 0 : parseInt(e.thumbh); e.tabhide = e.tabhide===undefined ? 0 : parseInt(e.tabhide); e.thumbhide = e.thumbhide===undefined ? 0 : parseInt(e.thumbhide); e.mh = e.mh===undefined || e.mh=="" || e.mh==="auto" ? 0 : parseInt(e.mh,0); if(e.layout==="fullscreen" || e.l==="fullscreen") newh = Math.max(e.mh,window.RSIH); else{ e.gw = Array.isArray(e.gw) ? e.gw : [e.gw]; for (var i in e.rl) if (e.gw[i]===undefined || e.gw[i]===0) e.gw[i] = e.gw[i-1]; e.gh = e.el===undefined || e.el==="" || (Array.isArray(e.el) && e.el.length==0)? e.gh : e.el; e.gh = Array.isArray(e.gh) ? e.gh : [e.gh]; for (var i in e.rl) if (e.gh[i]===undefined || e.gh[i]===0) e.gh[i] = e.gh[i-1]; var nl = new Array(e.rl.length), ix = 0, sl; e.tabw = e.tabhide>=pw ? 0 : e.tabw; e.thumbw = e.thumbhide>=pw ? 0 : e.thumbw; e.tabh = e.tabhide>=pw ? 0 : e.tabh; e.thumbh = e.thumbhide>=pw ? 0 : e.thumbh; for (var i in e.rl) nl[i] = e.rl[i]<window.RSIW ? 0 : e.rl[i]; sl = nl[0]; for (var i in nl) if (sl>nl[i] && nl[i]>0) { sl = nl[i]; ix=i;} var m = pw>(e.gw[ix]+e.tabw+e.thumbw) ? 1 : (pw-(e.tabw+e.thumbw)) / (e.gw[ix]); newh = (e.gh[ix] * m) + (e.tabh + e.thumbh); } var el = document.getElementById(e.c); if (el!==null && el) el.style.height = newh+"px"; el = document.getElementById(e.c+"_wrapper"); if (el!==null && el) { el.style.height = newh+"px"; el.style.display = "block"; } } catch(e){ console.log("Failure at Presize of Slider:" + e) } //}); };</script> </head> <body class="home page-template-default page page-id-10136 theme-elevate woocommerce-no-js ehf-header ehf-footer ehf-template-elevate ehf-stylesheet-elevate elementor-default elementor-kit-7253 elementor-page elementor-page-10136"> <div class="close-button body-close"></div> <div class="body-overlay-cart"></div> <div class="cart-icon-total-products"> <div class="cart-header"> <h3 class="cart-heading">Cart Total Items (<span class="icon-num">0</span>)</h3> <div class="close-cart"><i class="rt-xmark"></i></div> </div> <div class="widget woocommerce widget_shopping_cart"><h2 class="widgettitle">Cart</h2><div class="widget_shopping_cart_content"></div></div> </div> <!--Preloader start here--> <!--Preloader area end here--> <div id="page" class="site lesspadding"> <div class="sticky_form rts-search-popup"> <div class="sticky_form_full"> <form role="search" class="bs-search search-form" method="get" action="https://goldtradingqa.com/"> <div class="search-wrap"> <label class="screen-reader-text"> Search for: </label> <input type="search" placeholder="Searching..." name="s" class="search-input" value="" /> <button type="submit" value="Search"><i class="rt-search"></i></button> </div> </form> </div><i class=" rt-xmark close-search sticky_search sticky_form_search"></i> </div> <nav class="menu-wrap-off nav-container nav menu-ofcn"> <div class="inner-offcan"> <div class="nav-link-container"> <a href='#' class="nav-menu-link close-button" id="close-button2"> <i class="rt-xmark"></i> </a> </div> <div class="sidenav offcanvas-icon"> <div id="mobile_menu" class="reactheme-offcanvas-inner-left"> </div> <div class="reactheme-innner-offcanvas-contents"> <div data-elementor-type="wp-post" data-elementor-id="5334" class="elementor elementor-5334" data-elementor-post-type="rts-canvans"> <section class="elementor-section elementor-top-section elementor-element elementor-element-121ad84 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="121ad84" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-746ea97" data-id="746ea97" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-b542521 elementor-widget elementor-widget-image" data-id="b542521" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .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 fetchpriority="high" decoding="async" width="626" height="662" src="https://goldtradingqa.com/wp-content/uploads/2023/03/04-1-1.webp" class="attachment-full size-full wp-image-5344" alt="" srcset="https://goldtradingqa.com/wp-content/uploads/2023/03/04-1-1.webp 626w, https://goldtradingqa.com/wp-content/uploads/2023/03/04-1-1-284x300.webp 284w, https://goldtradingqa.com/wp-content/uploads/2023/03/04-1-1-600x635.webp 600w" sizes="(max-width: 626px) 100vw, 626px" /> </div> </div> <div class="elementor-element elementor-element-522b25b elementor-widget elementor-widget-react-heading" data-id="522b25b" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default center title-border-no"> <div class="title-inner no"> <h4 class="title">We Build Building and Great Constructive Homes.</h4> </div> <div class="description" > <p>We successfully cope with tasks of varying complexity, provide long-term guarantees and regularly master new technologies.</p> </div> </div> </div> </div> <div class="elementor-element elementor-element-156d6d0 elementor-widget-divider--view-line elementor-widget elementor-widget-divider" data-id="156d6d0" data-element_type="widget" data-widget_type="divider.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .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> <div class="elementor-divider"> <span class="elementor-divider-separator"> </span> </div> </div> </div> <div class="elementor-element elementor-element-46d3eca elementor-widget elementor-widget-react-heading" data-id="46d3eca" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default center title-border-no"> <div class="title-inner no"> <h2 class="title">Got a project in mind?</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-48afbe0 elementor-widget elementor-widget-react-button" data-id="48afbe0" data-element_type="widget" data-widget_type="react-button.default"> <div class="elementor-widget-container"> <div class="react-button secondary_btn"> <a class="react_button center" href="" > <span class="btn_text">Let's Talk</span> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </div> </nav> <header id="reactheme-header" class="header-style-1 mainsmenu fixed-header"> <div class="header-inner"> <div data-elementor-type="wp-post" data-elementor-id="7790" class="elementor elementor-7790" data-elementor-post-type="elementor-hf"> <header class="elementor-section elementor-top-section elementor-element elementor-element-126fc65 elementor-section-content-middle default-header-style bg-remove elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="126fc65" data-element_type="section" data-settings="{"background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-566280d" data-id="566280d" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-05c7e08 elementor-widget elementor-widget-site-logo" data-id="05c7e08" data-element_type="widget" data-settings="{"align_tablet":"right","width_tablet":{"unit":"%","size":100,"sizes":[]},"align_mobile":"left","width_mobile":{"unit":"%","size":86,"sizes":[]},"width":{"unit":"px","size":200,"sizes":[]},"align":"center","image_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"image_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_padding_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"caption_space":{"unit":"px","size":0,"sizes":[]},"caption_space_tablet":{"unit":"px","size":"","sizes":[]},"caption_space_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="site-logo.default"> <div class="elementor-widget-container"> <div class="hfe-site-logo"> <a data-elementor-open-lightbox="" class='elementor-clickable' href="https://goldtradingqa.com"> <div class="hfe-site-logo-set"> <div class="hfe-site-logo-container"> <img class="hfe-site-logo-img " src="https://goldtradingqa.com/wp-content/uploads/2023/03/Artboard-1-copy-13.png" alt=""/> </div> </div> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-51d8a80" data-id="51d8a80" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-c490b52 elementor-section-full_width elementor-hidden-tablet elementor-hidden-mobile elementor-section-height-default elementor-section-height-default" data-id="c490b52" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-1c131b1" data-id="1c131b1" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7562275 elementor-widget elementor-widget-topbar-icon-list" data-id="7562275" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"></div> <div class="query-list"> <span class="sub-text"></span> <span class="text-heading">We Guide You Through Every Step...</span> </div> </li> </ul> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-39c55ea" data-id="39c55ea" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2a106ec elementor-widget__width-auto elementor-widget-tablet__width-inherit elementor-widget elementor-widget-topbar-icon-list" data-id="2a106ec" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"><i aria-hidden="true" class="rt rt-location-dot"></i></div> <div class="query-list"> <span class="sub-text"></span> <a href="mailto:302 Gate E, Al Mirqab Mall, Doha"><span class="text-heading">302 Gate E, Al Mirqab Mall, Doha</span></a> </div> </li> </ul> </div> </div> </div> <div class="elementor-element elementor-element-2923f07 elementor-widget__width-auto elementor-widget-tablet__width-inherit elementor-widget elementor-widget-topbar-icon-list" data-id="2923f07" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"><svg aria-hidden="true" class="e-font-icon-svg e-far-envelope" viewBox="0 0 512 512" xmlns="http://www.w3.org/2000/svg"><path d="M464 64H48C21.49 64 0 85.49 0 112v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zm0 48v40.805c-22.422 18.259-58.168 46.651-134.587 106.49-16.841 13.247-50.201 45.072-73.413 44.701-23.208.375-56.579-31.459-73.413-44.701C106.18 199.465 70.425 171.067 48 152.805V112h416zM48 400V214.398c22.914 18.251 55.409 43.862 104.938 82.646 21.857 17.205 60.134 55.186 103.062 54.955 42.717.231 80.509-37.199 103.053-54.947 49.528-38.783 82.032-64.401 104.947-82.653V400H48z"></path></svg></div> <div class="query-list"> <span class="sub-text"></span> <a href="mailto:info@gtc.qa"><span class="text-heading">info@gtc.qa</span></a> </div> </li> </ul> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-b888137 elementor-section-full_width elementor-section-content-middle menu-mega elementor-section-height-default elementor-section-height-default" data-id="b888137" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-a504126" data-id="a504126" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-085c842 hfe-nav-menu__align-left elementor-widget__width-initial elementor-widget-tablet__width-auto elementor-widget elementor-widget-navigation-menu" data-id="085c842" data-element_type="widget" data-settings="{"padding_horizontal_menu_item":{"unit":"px","size":"","sizes":[]},"menu_row_space":{"unit":"px","size":0,"sizes":[]},"width_dropdown_item":{"unit":"px","size":200,"sizes":[]},"padding_vertical_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_vertical_menu_item":{"unit":"px","size":22,"sizes":[]},"padding_horizontal_menu_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_menu_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_menu_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_menu_item_mobile":{"unit":"px","size":"","sizes":[]},"menu_space_between":{"unit":"px","size":"","sizes":[]},"menu_space_between_tablet":{"unit":"px","size":"","sizes":[]},"menu_space_between_mobile":{"unit":"px","size":"","sizes":[]},"menu_row_space_tablet":{"unit":"px","size":"","sizes":[]},"menu_row_space_mobile":{"unit":"px","size":"","sizes":[]},"meniu_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"meniu_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"meniu_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_tablet":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"dropdown_border_radius_mobile":{"unit":"px","top":"","right":"","bottom":"","left":"","isLinked":true},"width_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"width_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_horizontal_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_tablet":{"unit":"px","size":"","sizes":[]},"padding_vertical_dropdown_item_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="navigation-menu.default"> <div class="elementor-widget-container"> <div class="menu-area horizontal expand-on-click separator_no primary-menu-icon"> <div class="menu_one icon2 "> <div class="col-cell menu-responsive primary-menu right_icon_ left_icon_"> <nav class="nav navbar"> <div class="navbar-menu"> <ul id="menu-primary-menu" class="menu"><li id="menu-item-13685" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-10136 current_page_item menu-item-13685"><a href="https://goldtradingqa.com/" aria-current="page">Home</a></li> <li id="menu-item-122" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-122"><a href="#">Services</a> <ul class="sub-menu"> <li id="menu-item-13683" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-13683"><a href="https://goldtradingqa.com/our-brands/">Our brands</a> <ul class="sub-menu"> <li id="menu-item-13686" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13686"><a href="/restaurants/AbuAlabid/">AbuAlabid</a></li> <li id="menu-item-13687" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13687"><a href="/restaurants/BakeryBox/">BakeryBox</a></li> <li id="menu-item-13688" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13688"><a href="/restaurants/FishHouse/">FishHouse</a></li> <li id="menu-item-13783" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13783"><a href="/restaurants/Fatoorah">Fatoorah</a></li> <li id="menu-item-13689" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13689"><a href="/restaurants/Panino/">Panino</a></li> </ul> </li> <li id="menu-item-13681" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13681"><a href="https://goldtradingqa.com/business-advising/">Business Advising</a></li> <li id="menu-item-13680" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13680"><a href="https://goldtradingqa.com/trading/">Trading</a></li> <li id="menu-item-13679" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13679"><a href="https://goldtradingqa.com/interior-design-gtc/">Interior Design</a></li> <li id="menu-item-13682" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13682"><a href="https://goldtradingqa.com/marketing-unit/">Marketing unit</a></li> </ul> </li> <li id="menu-item-13709" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13709"><a href="https://goldtradingqa.com/contact-us/">Contact Us</a></li> </ul> </div> </nav> </div> <div class="sidebarmenu-area text-right mobilehum primary-menu"> <ul class="offcanvas-icon layout-1"> <li class="nav-link-container center"> <a href="#" class="nav-menu-link menu-button"> <svg width="20" height="16" viewBox="0 0 20 16" fill="none" xmlns="http://www.w3.org/2000/svg"> <rect y="14" width="18" height="2" fill="#ffffff"></rect> <rect y="7" width="18" height="2" fill="#ffffff"></rect> <rect width="18" height="2" fill="#ffffff"></rect> </svg> </a> </li> </ul> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-2dfed90 hfe-search-layout-icon elementor-widget__width-auto elementor-hidden-mobile elementor-widget elementor-widget-hfe-search-button" data-id="2dfed90" data-element_type="widget" data-settings="{"toggle_icon_size":{"unit":"px","size":20,"sizes":[]},"input_icon_size":{"unit":"px","size":250,"sizes":[]},"input_icon_size_tablet":{"unit":"px","size":"","sizes":[]},"input_icon_size_mobile":{"unit":"px","size":"","sizes":[]},"toggle_icon_size_tablet":{"unit":"px","size":"","sizes":[]},"toggle_icon_size_mobile":{"unit":"px","size":"","sizes":[]},"close_icon_size":{"unit":"px","size":"20","sizes":[]},"close_icon_size_tablet":{"unit":"px","size":"","sizes":[]},"close_icon_size_mobile":{"unit":"px","size":"","sizes":[]},"close_icon_lineheight":{"unit":"px","size":"20","sizes":[]},"close_icon_lineheight_tablet":{"unit":"px","size":"","sizes":[]},"close_icon_lineheight_mobile":{"unit":"px","size":"","sizes":[]}}" data-widget_type="hfe-search-button.default"> <div class="elementor-widget-container"> <form class="rts-search-button-wrapper" role="search" action="https://goldtradingqa.com" method="get"> <div class="sticky_search text-center"> <i class="rt-search"></i> </div> </form> </div> </div> <div class="elementor-element elementor-element-d24b6f7 elementor-widget__width-auto elementor-hidden-tablet elementor-hidden-mobile elementor-widget elementor-widget-react-button" data-id="d24b6f7" data-element_type="widget" data-widget_type="react-button.default"> <div class="elementor-widget-container"> <div class="react-button primary_btn"> <a class="react_button right" href="/contact-us" > <span class="btn_text">Get a Quote</span> <svg xmlns="http://www.w3.org/2000/svg" width="14" height="13" viewBox="0 0 14 13" fill="none"><path d="M11.0039 3.414L2.39691 12.021L0.98291 10.607L9.58891 2H2.00391V0H13.0039V11H11.0039V3.414Z" fill="#FF6600"></path></svg> </a> </div> </div> </div> </div> </div> </div> </section> </div> </div> <div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-61bc8fe elementor-hidden-tablet elementor-hidden-mobile" data-id="61bc8fe" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </header> </div> </div> </header> <div class="main-contain offcontents"> <div class="container"> <div id="content"> <div class="row padding-"> <div class="col-lg-12 "> <article id="post-10136" class="post-10136 page type-page status-publish hentry"> <div class="entry-content"> <div data-elementor-type="wp-page" data-elementor-id="10136" class="elementor elementor-10136" data-elementor-post-type="page"> <section class="elementor-section elementor-top-section elementor-element elementor-element-4037907 elementor-section-stretched elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="4037907" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> <div class="elementor-background-overlay"></div> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-70def61" data-id="70def61" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-693321c elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="693321c" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-f2b2c3b elementor-hidden-tablet elementor-hidden-mobile" data-id="f2b2c3b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-f1ca74b elementor--h-position-center elementor--v-position-middle elementor-widget elementor-widget-slides" data-id="f1ca74b" data-element_type="widget" data-settings="{"navigation":"none","transition":"fade","autoplay":"yes","pause_on_hover":"yes","pause_on_interaction":"yes","autoplay_speed":5000,"infinite":"yes","transition_speed":500}" data-widget_type="slides.default"> <div class="elementor-widget-container"> <style>/*! elementor-pro - v3.23.0 - 05-08-2024 */ .elementor-slides .swiper-slide-bg{background-size:cover;background-position:50%;background-repeat:no-repeat;min-width:100%;min-height:100%}.elementor-slides .swiper-slide-inner{background-repeat:no-repeat;background-position:50%;position:absolute;top:0;left:0;bottom:0;right:0;padding:50px;margin:auto}.elementor-slides .swiper-slide-inner,.elementor-slides .swiper-slide-inner:hover{color:#fff;display:flex}.elementor-slides .swiper-slide-inner .elementor-background-overlay{position:absolute;z-index:0;top:0;bottom:0;left:0;right:0}.elementor-slides .swiper-slide-inner .elementor-slide-content{position:relative;z-index:1;width:100%}.elementor-slides .swiper-slide-inner .elementor-slide-heading{font-size:35px;font-weight:700;line-height:1}.elementor-slides .swiper-slide-inner .elementor-slide-description{font-size:17px;line-height:1.4}.elementor-slides .swiper-slide-inner .elementor-slide-description:not(:last-child),.elementor-slides .swiper-slide-inner .elementor-slide-heading:not(:last-child){margin-bottom:30px}.elementor-slides .swiper-slide-inner .elementor-slide-button{border:2px solid #fff;color:#fff;background:transparent;display:inline-block}.elementor-slides .swiper-slide-inner .elementor-slide-button,.elementor-slides .swiper-slide-inner .elementor-slide-button:hover{background:transparent;color:inherit;text-decoration:none}.elementor--v-position-top .swiper-slide-inner{align-items:flex-start}.elementor--v-position-bottom .swiper-slide-inner{align-items:flex-end}.elementor--v-position-middle .swiper-slide-inner{align-items:center}.elementor--h-position-left .swiper-slide-inner{justify-content:flex-start}.elementor--h-position-right .swiper-slide-inner{justify-content:flex-end}.elementor--h-position-center .swiper-slide-inner{justify-content:center}body.rtl .elementor-widget-slides .elementor-swiper-button-next{left:10px;right:auto}body.rtl .elementor-widget-slides .elementor-swiper-button-prev{right:10px;left:auto}.elementor-slides-wrapper div:not(.swiper-slide)>.swiper-slide-inner{display:none}@media (max-width:767px){.elementor-slides .swiper-slide-inner{padding:30px}.elementor-slides .swiper-slide-inner .elementor-slide-heading{font-size:23px;line-height:1;margin-bottom:15px}.elementor-slides .swiper-slide-inner .elementor-slide-description{font-size:13px;line-height:1.4;margin-bottom:15px}}</style> <div class="elementor-swiper"> <div class="elementor-slides-wrapper elementor-main-swiper swiper" dir="ltr" data-animation="zoomIn"> <div class="swiper-wrapper elementor-slides"> <div class="elementor-repeater-item-5b2c7fe swiper-slide"><div class="swiper-slide-bg" role="img"></div><div class="elementor-background-overlay"></div><a class="swiper-slide-inner" href="/trading"><div class="swiper-slide-contents"><div class="elementor-slide-heading">Trading</div><div class="elementor-slide-description">You’re One-Stop Source for Bespoke Products & Global Procurement</div><div class="elementor-button elementor-slide-button elementor-size-sm">Read More...</div></div></a></div><div class="elementor-repeater-item-47ce352 swiper-slide"><div class="swiper-slide-bg" role="img"></div><a class="swiper-slide-inner" href="/marketing-unit"><div class="swiper-slide-contents"><div class="elementor-slide-heading">Marketing unit</div><div class="elementor-slide-description">You’re Partner for Powerful Marketing & Brand Storytelling - From Concept to Conversion</div><div class="elementor-button elementor-slide-button elementor-size-sm">Read More...</div></div></a></div><div class="elementor-repeater-item-7ba5fd9 swiper-slide"><div class="swiper-slide-bg" role="img"></div><div class="elementor-background-overlay"></div><a class="swiper-slide-inner" href="/interior-design-gtc"><div class="swiper-slide-contents"><div class="elementor-slide-heading">Interior Design</div><div class="elementor-slide-description">You’re Vision, Brought to Life - Comprehensive Design, Construction & Fit-Out Solutions</div><div class="elementor-button elementor-slide-button elementor-size-sm">Read More...</div></div></a></div> </div> </div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-2069762 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="2069762" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-f640719" data-id="f640719" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-f85bfc2 elementor-reverse-mobile elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="f85bfc2" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-93a95c6 elementor-hidden-mobile" data-id="93a95c6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-9ff90da elementor-widget__width-auto elementor-absolute e-transform elementor-widget elementor-widget-heading" data-id="9ff90da" data-element_type="widget" data-settings="{"_position":"absolute","_transform_rotateZ_effect":{"unit":"px","size":-90,"sizes":[]},"_transform_rotateZ_effect_tablet":{"unit":"deg","size":"","sizes":[]},"_transform_rotateZ_effect_mobile":{"unit":"deg","size":"","sizes":[]}}" data-widget_type="heading.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .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><h3 class="elementor-heading-title elementor-size-default">15+</h3> </div> </div> <div class="elementor-element elementor-element-ada1fca elementor-widget__width-auto elementor-absolute e-transform elementor-widget elementor-widget-heading" data-id="ada1fca" data-element_type="widget" data-settings="{"_position":"absolute","_transform_rotateZ_effect":{"unit":"px","size":-90,"sizes":[]},"_transform_rotateZ_effect_tablet":{"unit":"deg","size":"","sizes":[]},"_transform_rotateZ_effect_mobile":{"unit":"deg","size":"","sizes":[]}}" data-widget_type="heading.default"> <div class="elementor-widget-container"> <span class="elementor-heading-title elementor-size-default">Year Experience</span> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-0d6ed1b elementor-widget elementor-widget-image" data-id="0d6ed1b" data-element_type="widget" data-widget_type="image.default"> <div class="elementor-widget-container"> <img decoding="async" width="500" height="540" src="https://goldtradingqa.com/wp-content/uploads/2023/12/23.jpg" class="attachment-full size-full wp-image-10376" alt="" srcset="https://goldtradingqa.com/wp-content/uploads/2023/12/23.jpg 500w, https://goldtradingqa.com/wp-content/uploads/2023/12/23-278x300.jpg 278w" sizes="(max-width: 500px) 100vw, 500px" /> </div> </div> <div class="elementor-element elementor-element-a3b240b elementor-absolute elementor-widget__width-auto elementor-widget elementor-widget-rt-react-image" data-id="a3b240b" data-element_type="widget" data-settings="{"_position":"absolute"}" data-widget_type="rt-react-image.default"> <div class="elementor-widget-container"> <div class="react-image "> <img decoding="async" class="react-multi-image " src="https://reactheme.com/products/wordpress/elevate/interior/wp-content/uploads/2023/12/24.jpg" alt=""/> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-top-column elementor-element elementor-element-b32e3e3" data-id="b32e3e3" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-3fb1ae5 elementor-widget elementor-widget-react-heading" data-id="3fb1ae5" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading style9 left title-border-no"> <div class="title-inner no"> <div class="image-heading"><div class="title-img top" data-aos-delay="100" data-aos="fade-up" data-aos-duration="800" data-aos-once="true"> <img decoding="async" src="https://reactheme.com/products/wordpress/elevate/interior/wp-content/uploads/2023/12/svgviewer-png-output.png" alt="title-image" /></div><span class="sub-text" data-aos-delay="200" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">About Us</span></div><h2 class="title" data-aos-delay="300" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">The Gold Trading Company: You’re One-Stop Shop for Success</h2> </div> <div class="description" data-aos-delay="350" data-aos="fade-up" data-aos-duration="800" data-aos-once="true"> <p>At GTC, we're passionate about empowering businesses across various industries to thrive. We offer a unique blend of services designed to support you at every stage of your journey, from crafting a successful business plan to bringing your dream space to life and telling your brand story through captivating marketing.</p> </div> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-7c85ed0 elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="7c85ed0" data-element_type="section" data-settings="{"background_background":"classic","stretch_section":"section-stretched"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-1d1036f" data-id="1d1036f" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-aaa9755 elementor-section-content-middle elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="aaa9755" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-884e1d0" data-id="884e1d0" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-02a24a4 elementor-widget elementor-widget-react-heading" data-id="02a24a4" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading style9 left title-border-no"> <div class="title-inner no"> <div class="image-heading"><div class="title-img top" data-aos-delay="100" data-aos="fade-up" data-aos-duration="800" data-aos-once="true"> <img decoding="async" src="https://reactheme.com/products/wordpress/elevate/interior/wp-content/uploads/2023/12/svgviewer-png-output.png" alt="title-image" /></div><span class="sub-text" data-aos-delay="200" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">Our businesses</span></div><h2 class="title" data-aos-delay="300" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">Adapting to Evolving Needs: Nurturing Customer-Centric Businesses</h2> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-7c87b1c" data-id="7c87b1c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-2251c26 elementor-widget elementor-widget-text-editor" data-id="2251c26" data-element_type="widget" data-widget_type="text-editor.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .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>Each of our businesses has been fostered keeping in mind the rapidly changing need of our customers.</p> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-aaf20ea" data-id="aaf20ea" data-element_type="column"> <div class="elementor-widget-wrap"> </div> </div> </div> </section> </div> </div> </div> </section> <div class="elementor-element elementor-element-a1f7b14 e-flex e-con-boxed e-con e-parent" data-id="a1f7b14" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-ac2b9bd elementor-widget elementor-widget-spacer" data-id="ac2b9bd" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .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> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-6ae1e25 e-con-full e-flex e-con e-parent" data-id="6ae1e25" data-element_type="container" data-settings="{"background_background":"classic"}"> <div class="elementor-element elementor-element-03a581e e-con-full e-flex e-con e-child" data-id="03a581e" data-element_type="container"> <div class="elementor-element elementor-element-86e7f6a elementor-widget__width-initial elementor-widget elementor-widget-rt-service-grid" data-id="86e7f6a" data-element_type="widget" data-widget_type="rt-service-grid.default"> <div class="elementor-widget-container"> <div class="react-addon-services services-style14"> <div class="rts-single-project-one"> <a href="/our-brands" class="thumbnail"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2024/06/834071-too-restaurant-too-hotel-paris-photos-menu-entrees.jpg" alt=""/> </a> <div class="body"> <div class="icon"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2023/04/10-1.svg" alt=""/> </div> <a href="/our-brands"> <h5 class="title">Our brands</h5> </a> <span class="pre-title">01</span> </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-dc31e7a e-con-full e-flex e-con e-child" data-id="dc31e7a" data-element_type="container"> <div class="elementor-element elementor-element-569f619 elementor-widget__width-initial elementor-widget elementor-widget-rt-service-grid" data-id="569f619" data-element_type="widget" data-widget_type="rt-service-grid.default"> <div class="elementor-widget-container"> <div class="react-addon-services services-style14"> <div class="rts-single-project-one"> <a href="/business-advising" class="thumbnail"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2024/05/financial-advisor-with-colleague.webp" alt=""/> </a> <div class="body"> <div class="icon"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2023/12/s3.svg" alt=""/> </div> <a href="/business-advising"> <h5 class="title">Business Advising</h5> </a> <span class="pre-title">02</span> </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-721da65 e-con-full e-flex e-con e-child" data-id="721da65" data-element_type="container"> <div class="elementor-element elementor-element-7fb7c34 elementor-widget__width-initial elementor-widget elementor-widget-rt-service-grid" data-id="7fb7c34" data-element_type="widget" data-widget_type="rt-service-grid.default"> <div class="elementor-widget-container"> <div class="react-addon-services services-style14"> <div class="rts-single-project-one"> <a href="/trading" class="thumbnail"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2023/12/space-planning.jpg" alt=""/> </a> <div class="body"> <div class="icon"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2023/04/12-1.svg" alt=""/> </div> <a href="/trading"> <h5 class="title">Trading</h5> </a> <span class="pre-title">03</span> </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-5bf432d e-con-full e-flex e-con e-child" data-id="5bf432d" data-element_type="container"> <div class="elementor-element elementor-element-5a5e51e elementor-widget__width-initial elementor-widget elementor-widget-rt-service-grid" data-id="5a5e51e" data-element_type="widget" data-widget_type="rt-service-grid.default"> <div class="elementor-widget-container"> <div class="react-addon-services services-style14"> <div class="rts-single-project-one"> <a href="/interior-design-gtc" class="thumbnail"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2023/12/room-model.jpg" alt=""/> </a> <div class="body"> <div class="icon"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2023/12/s1.svg" alt=""/> </div> <a href="/interior-design-gtc"> <h5 class="title">Interior Design</h5> </a> <span class="pre-title">04</span> </div> </div> </div> </div> </div> </div> <div class="elementor-element elementor-element-0868249 e-con-full e-flex e-con e-child" data-id="0868249" data-element_type="container"> <div class="elementor-element elementor-element-173a272 elementor-widget__width-initial elementor-widget elementor-widget-rt-service-grid" data-id="173a272" data-element_type="widget" data-widget_type="rt-service-grid.default"> <div class="elementor-widget-container"> <div class="react-addon-services services-style14"> <div class="rts-single-project-one"> <a href="/marketing-unit" class="thumbnail"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2023/12/interior-design.jpg" alt=""/> </a> <div class="body"> <div class="icon"> <img decoding="async" src="https://goldtradingqa.com/wp-content/uploads/2023/04/Vector-8.svg" alt=""/> </div> <a href="/marketing-unit"> <h5 class="title">Marketing Unit</h5> </a> <span class="pre-title">05</span> </div> </div> </div> </div> </div> </div> </div> <section class="elementor-section elementor-top-section elementor-element elementor-element-7f58ec0 elementor-section-full_width elementor-section-stretched elementor-section-height-default elementor-section-height-default" data-id="7f58ec0" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-90f8c09" data-id="90f8c09" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-73e1ac9 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="73e1ac9" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-365036b" data-id="365036b" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-893ef2c elementor-widget elementor-widget-react-heading" data-id="893ef2c" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default left title-border-no"> <div class="title-inner no"> <span class="sub-text" data-aos-delay="200" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">News room</span><h3 class="title" data-aos-delay="300" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">Our News</h3> </div> </div> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-e1e909f elementor-widget elementor-widget-rt-portfolio-slider" data-id="e1e909f" data-element_type="widget" data-widget_type="rt-portfolio-slider.default"> <div class="elementor-widget-container"> <div class="portfolio-slider-nav"> <div class="swiper-button-prev"> <i class="rt rt-arrow-left"></i> </div> <div class="swiper-button-next"> <i class="rt rt-arrow-right"></i> </div> </div> <div class="swiper rtaddon-portfolio-slider-11164 rsaddon-unique-slider rs-addon-slider rt-portfolio-slider rt-portfolio rt-portfolio-style8 slider-style-8 center-mode-false"> <div class="swiper-wrapper"> <div class="grid-item swiper-slide"> <div class="rts-business-case-s-2"> <a href="https://goldtradingqa.com/rt-portfolio/kitchen-dining-room/" class="thumbnail"> <img decoding="async" width="800" height="510" src="https://goldtradingqa.com/wp-content/uploads/2023/03/black-fitted-kitchen-dining-room-800x510.webp" class="attachment-elevate-portfolio-slider-2 size-elevate-portfolio-slider-2 wp-post-image" alt="" /> </a> <div class="inner"> <a href="https://goldtradingqa.com/rt-portfolio/kitchen-dining-room/"> <h5 class="title"> Kitchen Dining Room </h5> </a> <span class="p-category"> <a href="https://goldtradingqa.com/rt-portfolio-category/building/" rel="tag">Building</a><span class="separator">,</span> <a href="https://goldtradingqa.com/rt-portfolio-category/renovation/" rel="tag">Renovation</a></span> </div> <a href="https://goldtradingqa.com/rt-portfolio/kitchen-dining-room/" class="over_link"></a> </div> </div> <div class="grid-item swiper-slide"> <div class="rts-business-case-s-2"> <a href="https://goldtradingqa.com/rt-portfolio/dining-interior-design/" class="thumbnail"> <img loading="lazy" decoding="async" width="800" height="510" src="https://goldtradingqa.com/wp-content/uploads/2023/03/interior-design-styles-your-dining-room-800x510.webp" class="attachment-elevate-portfolio-slider-2 size-elevate-portfolio-slider-2 wp-post-image" alt="" /> </a> <div class="inner"> <a href="https://goldtradingqa.com/rt-portfolio/dining-interior-design/"> <h5 class="title"> Dining Interior Design </h5> </a> <span class="p-category"> <a href="https://goldtradingqa.com/rt-portfolio-category/building/" rel="tag">Building</a></span> </div> <a href="https://goldtradingqa.com/rt-portfolio/dining-interior-design/" class="over_link"></a> </div> </div> <div class="grid-item swiper-slide"> <div class="rts-business-case-s-2"> <a href="https://goldtradingqa.com/rt-portfolio/jewelry-shop-design/" class="thumbnail"> <img loading="lazy" decoding="async" width="800" height="510" src="https://goldtradingqa.com/wp-content/uploads/2023/03/jewelry-boutique-with-buyer-shop-800x510.webp" class="attachment-elevate-portfolio-slider-2 size-elevate-portfolio-slider-2 wp-post-image" alt="" /> </a> <div class="inner"> <a href="https://goldtradingqa.com/rt-portfolio/jewelry-shop-design/"> <h5 class="title"> Jewelry Shop Design </h5> </a> <span class="p-category"> <a href="https://goldtradingqa.com/rt-portfolio-category/building/" rel="tag">Building</a></span> </div> <a href="https://goldtradingqa.com/rt-portfolio/jewelry-shop-design/" class="over_link"></a> </div> </div> <div class="grid-item swiper-slide"> <div class="rts-business-case-s-2"> <a href="https://goldtradingqa.com/rt-portfolio/beautiful-room-design/" class="thumbnail"> <img loading="lazy" decoding="async" width="800" height="510" src="https://goldtradingqa.com/wp-content/uploads/2023/03/beautiful-room-with-elegant-800x510.webp" class="attachment-elevate-portfolio-slider-2 size-elevate-portfolio-slider-2 wp-post-image" alt="" /> </a> <div class="inner"> <a href="https://goldtradingqa.com/rt-portfolio/beautiful-room-design/"> <h5 class="title"> Beautiful Room Design </h5> </a> <span class="p-category"> <a href="https://goldtradingqa.com/rt-portfolio-category/building/" rel="tag">Building</a><span class="separator">,</span> <a href="https://goldtradingqa.com/rt-portfolio-category/renovation/" rel="tag">Renovation</a></span> </div> <a href="https://goldtradingqa.com/rt-portfolio/beautiful-room-design/" class="over_link"></a> </div> </div> <div class="grid-item swiper-slide"> <div class="rts-business-case-s-2"> <a href="https://goldtradingqa.com/rt-portfolio/living-room-interiors/" class="thumbnail"> <img loading="lazy" decoding="async" width="800" height="510" src="https://goldtradingqa.com/wp-content/uploads/2023/03/interiors-living-room-mockup-computer-digitally-800x510.webp" class="attachment-elevate-portfolio-slider-2 size-elevate-portfolio-slider-2 wp-post-image" alt="" /> </a> <div class="inner"> <a href="https://goldtradingqa.com/rt-portfolio/living-room-interiors/"> <h5 class="title"> Living Room Interiors </h5> </a> <span class="p-category"> <a href="https://goldtradingqa.com/rt-portfolio-category/building/" rel="tag">Building</a><span class="separator">,</span> <a href="https://goldtradingqa.com/rt-portfolio-category/renovation/" rel="tag">Renovation</a></span> </div> <a href="https://goldtradingqa.com/rt-portfolio/living-room-interiors/" class="over_link"></a> </div> </div> </div> </div> <script type="text/javascript"> jQuery(document).ready(function(){ var swiper = new Swiper(".rtaddon-portfolio-slider-11164", { slidesPerView: 3, speed: 1000, loop: true, autoplay: false, spaceBetween: 25, centeredSlides: false, navigation: { nextEl: ".swiper-button-next", prevEl: ".swiper-button-prev", }, breakpoints: { 0: { slidesPerView: 1, }, 575: { slidesPerView: 1 },767: { slidesPerView: 1 },991: { slidesPerView: 2 },1199: { slidesPerView: 2 }, 1399: { slidesPerView: 3, spaceBetween: 25 } } }); }); </script> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-top-section elementor-element elementor-element-0fe853e elementor-section-stretched elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="0fe853e" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-ff001e4" data-id="ff001e4" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-c27c0c6 elementor-widget elementor-widget-react-heading" data-id="c27c0c6" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default center title-border-no"> <div class="title-inner no"> <span class="sub-text" data-aos-delay="200" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">Customer Journey</span> </div> </div> </div> </div> <section class="elementor-section elementor-inner-section elementor-element elementor-element-adca27f elementor-section-content-middle elementor-section-full_width elementor-section-height-default elementor-section-height-default" data-id="adca27f" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-eef64d6" data-id="eef64d6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-4738ed6 elementor-widget elementor-widget-react-heading" data-id="4738ed6" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading style14 left title-border-no"> <div class="title-inner no"> <h2 class="title" data-aos-delay="300" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">You’re One-Stop Shop for Launching & Growing Your Business</h2> </div> <div class="description" data-aos-delay="350" data-aos="fade-up" data-aos-duration="800" data-aos-once="true"> <p>At GTC, we believe in the power of your entrepreneurial dreams. That's why we offer a comprehensive suite of end-to-end services designed to transform your vision into a thriving reality. Whether you're starting a new venture or looking to revitalize an existing business, we're your partner every step of the way</p> </div> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-50 elementor-inner-column elementor-element elementor-element-22ab16c" data-id="22ab16c" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-5edd1a1 elementor-widget elementor-widget-react-heading" data-id="5edd1a1" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading style9 left title-border-no"> <div class="title-inner no"> <div class="image-heading"><div class="title-img top" data-aos-delay="100" data-aos="fade-up" data-aos-duration="800" data-aos-once="true"> <img decoding="async" src="https://reactheme.com/products/wordpress/elevate/interior/wp-content/uploads/2023/12/svgviewer-png-output.png" alt="title-image" /></div><span class="sub-text" data-aos-delay="200" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">You’re Success Journey with GTC :</span></div> </div> </div> </div> </div> <div class="elementor-element elementor-element-184659c elementor-widget elementor-widget-toggle" data-id="184659c" data-element_type="widget" data-widget_type="toggle.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .elementor-toggle{text-align:start}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d5d8dc;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d5d8dc;display:none}@media (max-width:767px){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}.e-con-inner>.elementor-widget-toggle,.e-con>.elementor-widget-toggle{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)}</style> <div class="elementor-toggle"> <div class="elementor-toggle-item"> <div id="elementor-tab-title-2541" class="elementor-tab-title" data-tab="1" role="button" aria-controls="elementor-tab-content-2541" aria-expanded="false"> <span class="elementor-toggle-icon elementor-toggle-icon-left" aria-hidden="true"> <span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-level-down-alt" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"></path></svg></span> <span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-level-up-alt" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"></path></svg></span> </span> <a class="elementor-toggle-title" tabindex="0">Concept to Launch</a> </div> <div id="elementor-tab-content-2541" class="elementor-tab-content elementor-clearfix" data-tab="1" role="region" aria-labelledby="elementor-tab-title-2541"><ul><li><strong>Concept Development:</strong> We help you refine your business idea, identify your target market, and conduct thorough market research to ensure your success.</li><li><strong>Business Plan & Feasibility Study:</strong> Craft a roadmap to success with our comprehensive business plan services and in-depth feasibility studies.</li></ul></div> </div> <div class="elementor-toggle-item"> <div id="elementor-tab-title-2542" class="elementor-tab-title" data-tab="2" role="button" aria-controls="elementor-tab-content-2542" aria-expanded="false"> <span class="elementor-toggle-icon elementor-toggle-icon-left" aria-hidden="true"> <span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-level-down-alt" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"></path></svg></span> <span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-level-up-alt" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"></path></svg></span> </span> <a class="elementor-toggle-title" tabindex="0">Building Your Business</a> </div> <div id="elementor-tab-content-2542" class="elementor-tab-content elementor-clearfix" data-tab="2" role="region" aria-labelledby="elementor-tab-title-2542"><ul><li><strong>Sourcing & Procurement:</strong> Leverage our global network to source and supply everything your business needs, from customized furniture to equipment and food trucks.</li><li><strong>Design & Construction:</strong> Our skilled team translates your vision into reality, specializing in design and construction but catering to diverse project needs.</li></ul></div> </div> <div class="elementor-toggle-item"> <div id="elementor-tab-title-2543" class="elementor-tab-title" data-tab="3" role="button" aria-controls="elementor-tab-content-2543" aria-expanded="false"> <span class="elementor-toggle-icon elementor-toggle-icon-left" aria-hidden="true"> <span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-level-down-alt" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"></path></svg></span> <span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-level-up-alt" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"></path></svg></span> </span> <a class="elementor-toggle-title" tabindex="0">Elevating Your Brand</a> </div> <div id="elementor-tab-content-2543" class="elementor-tab-content elementor-clearfix" data-tab="3" role="region" aria-labelledby="elementor-tab-title-2543"><ul><li><strong>Marketing & Branding:</strong> Make your mark in the local market. Our creative team offers branding services, professional photography & videography, and comprehensive digital marketing solutions to get you noticed and attract customers.</li></ul></div> </div> <div class="elementor-toggle-item"> <div id="elementor-tab-title-2544" class="elementor-tab-title" data-tab="4" role="button" aria-controls="elementor-tab-content-2544" aria-expanded="false"> <span class="elementor-toggle-icon elementor-toggle-icon-left" aria-hidden="true"> <span class="elementor-toggle-icon-closed"><svg class="e-font-icon-svg e-fas-level-down-alt" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M313.553 392.331L209.587 504.334c-9.485 10.214-25.676 10.229-35.174 0L70.438 392.331C56.232 377.031 67.062 352 88.025 352H152V80H68.024a11.996 11.996 0 0 1-8.485-3.515l-56-56C-4.021 12.926 1.333 0 12.024 0H208c13.255 0 24 10.745 24 24v328h63.966c20.878 0 31.851 24.969 17.587 40.331z"></path></svg></span> <span class="elementor-toggle-icon-opened"><svg class="elementor-toggle-icon-opened e-font-icon-svg e-fas-level-up-alt" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M313.553 119.669L209.587 7.666c-9.485-10.214-25.676-10.229-35.174 0L70.438 119.669C56.232 134.969 67.062 160 88.025 160H152v272H68.024a11.996 11.996 0 0 0-8.485 3.515l-56 56C-4.021 499.074 1.333 512 12.024 512H208c13.255 0 24-10.745 24-24V160h63.966c20.878 0 31.851-24.969 17.587-40.331z"></path></svg></span> </span> <a class="elementor-toggle-title" tabindex="0">Ongoing Support</a> </div> <div id="elementor-tab-content-2544" class="elementor-tab-content elementor-clearfix" data-tab="4" role="region" aria-labelledby="elementor-tab-title-2544"><ul><li><strong>Business Advisory Services:</strong> Don’t go it alone. Our team of experts provides ongoing business advice to help you manage your new venture or get your existing business back on track.</li></ul></div> </div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> <div class="elementor-element elementor-element-26e5968 e-flex e-con-boxed e-con e-parent" data-id="26e5968" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-5efa543 elementor-widget elementor-widget-spacer" data-id="5efa543" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> <section class="elementor-section elementor-top-section elementor-element elementor-element-9e76af5 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="9e76af5" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-90814ad" data-id="90814ad" data-element_type="column" data-settings="{"background_background":"classic"}"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-770fc35 elementor-widget__width-initial elementor-widget elementor-widget-react-heading" data-id="770fc35" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default center title-border-no"> <div class="title-inner no"> <span class="sub-text" data-aos-delay="200" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">Careers</span><h2 class="title" data-aos-delay="300" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">Join Our Dynamic Team and Drive Innovation!</h2> </div> <div class="description" data-aos-delay="350" data-aos="fade-up" data-aos-duration="800" data-aos-once="true"> <p>At The Gold Trading Company (GTC), we believe in fostering a work environment that thrives on innovation, collaboration, and excellence. Our diverse portfolio of businesses and services offers unique career opportunities for passionate and talented individuals. Explore the exciting possibilities with our brands...</p> </div> </div> </div> </div> </div> </div> </div> </section> <div class="elementor-element elementor-element-5fd6a33 e-flex e-con-boxed e-con e-parent" data-id="5fd6a33" data-element_type="container"> <div class="e-con-inner"> <div class="elementor-element elementor-element-acc7a0d elementor-widget elementor-widget-spacer" data-id="acc7a0d" data-element_type="widget" data-widget_type="spacer.default"> <div class="elementor-widget-container"> <div class="elementor-spacer"> <div class="elementor-spacer-inner"></div> </div> </div> </div> </div> </div> </div> </div> <!-- .entry-content --> </article> <!-- #post-10136 --> </div> </div> </div><!-- .content --> </div><!-- .container --> </div><!-- .main-container --> <footer itemtype="https://schema.org/WPFooter" itemscope="itemscope" id="colophon" role="contentinfo"> <div class='footer-width-fixer'> <div data-elementor-type="wp-post" data-elementor-id="2662" class="elementor elementor-2662" data-elementor-post-type="elementor-hf"> <section class="elementor-section elementor-top-section elementor-element elementor-element-012af3d elementor-section-stretched footer_style1 elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="012af3d" data-element_type="section" data-settings="{"stretch_section":"section-stretched","background_background":"classic"}"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-c428aad" data-id="c428aad" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <section class="elementor-section elementor-inner-section elementor-element elementor-element-0e47479 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default" data-id="0e47479" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-3db4cfe" data-id="3db4cfe" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-689cfea elementor-widget elementor-widget-react-heading" data-id="689cfea" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default title-border-no"> <div class="title-inner no"> <h2 class="title" data-aos-delay="300" data-aos="fade-up" data-aos-duration="800" data-aos-once="true">Let's Build Something Great Together!</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-e0fc732 elementor-widget__width-auto elementor-widget elementor-widget-react-button" data-id="e0fc732" data-element_type="widget" data-widget_type="react-button.default"> <div class="elementor-widget-container"> <div class="react-button primary_btn"> <a class="react_button " href="/contact-us" > <span class="btn_text">Get Started</span> </a> </div> </div> </div> <div class="elementor-element elementor-element-b2db8ba elementor-widget__width-auto elementor-widget elementor-widget-react-button" data-id="b2db8ba" data-element_type="widget" data-widget_type="react-button.default"> <div class="elementor-widget-container"> <div class="react-button secondary_btn"> <a class="react_button " href="/contact-us" > <span class="btn_text">Contact Us</span> </a> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-a8ed855" data-id="a8ed855" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-7ccea4d elementor-widget elementor-widget-react-heading" data-id="7ccea4d" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default title-border-no"> <div class="title-inner no"> <h2 class="title">Address</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-b2da5e7 elementor-widget elementor-widget-heading" data-id="b2da5e7" data-element_type="widget" data-widget_type="heading.default"> <div class="elementor-widget-container"> <div class="elementor-heading-title elementor-size-default">Office 302 --- <br /> Gate E, 3rd Floor, Al Mirqab Mall <br /> Doha - Qatar</div> </div> </div> <div class="elementor-element elementor-element-7add108 elementor-shape-circle e-grid-align-left elementor-grid-0 elementor-widget elementor-widget-social-icons" data-id="7add108" data-element_type="widget" data-widget_type="social-icons.default"> <div class="elementor-widget-container"> <style>/*! elementor - v3.23.0 - 05-08-2024 */ .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> <div class="elementor-social-icons-wrapper elementor-grid"> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-facebook-f elementor-repeater-item-6666e8e" target="_blank"> <span class="elementor-screen-only">Facebook-f</span> <svg class="e-font-icon-svg e-fab-facebook-f" viewBox="0 0 320 512" xmlns="http://www.w3.org/2000/svg"><path d="M279.14 288l14.22-92.66h-88.91v-60.13c0-25.35 12.42-50.06 52.24-50.06h40.42V6.26S260.43 0 225.36 0c-73.22 0-121.08 44.38-121.08 124.72v70.62H22.89V288h81.39v224h100.17V288z"></path></svg> </a> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-twitter elementor-repeater-item-3011159" target="_blank"> <span class="elementor-screen-only">Twitter</span> <svg class="e-font-icon-svg e-fab-twitter" 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> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-youtube elementor-repeater-item-ab781ff" target="_blank"> <span class="elementor-screen-only">Youtube</span> <svg class="e-font-icon-svg e-fab-youtube" 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> </span> <span class="elementor-grid-item"> <a class="elementor-icon elementor-social-icon elementor-social-icon-linkedin-in elementor-repeater-item-4950a17" target="_blank"> <span class="elementor-screen-only">Linkedin-in</span> <svg class="e-font-icon-svg e-fab-linkedin-in" viewBox="0 0 448 512" xmlns="http://www.w3.org/2000/svg"><path d="M100.28 448H7.4V148.9h92.88zM53.79 108.1C24.09 108.1 0 83.5 0 53.8a53.79 53.79 0 0 1 107.58 0c0 29.7-24.1 54.3-53.79 54.3zM447.9 448h-92.68V302.4c0-34.7-.7-79.2-48.29-79.2-48.29 0-55.69 37.7-55.69 76.7V448h-92.78V148.9h89.08v40.8h1.3c12.4-23.5 42.69-48.3 87.88-48.3 94 0 111.28 61.9 111.28 142.3V448z"></path></svg> </a> </span> </div> </div> </div> </div> </div> <div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-828b71d" data-id="828b71d" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-e29500c elementor-widget elementor-widget-react-heading" data-id="e29500c" data-element_type="widget" data-widget_type="react-heading.default"> <div class="elementor-widget-container"> <div class="react-heading default title-border-no"> <div class="title-inner no"> <h2 class="title">Say Hello</h2> </div> </div> </div> </div> <div class="elementor-element elementor-element-c7b7785 elementor-widget elementor-widget-topbar-icon-list" data-id="c7b7785" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"></div> <div class="query-list"> <span class="sub-text"></span> <a href="mailto:info@gtc.qa"><span class="text-heading">info@gtc.qa</span></a> </div> </li> </ul> </div> </div> </div> <div class="elementor-element elementor-element-149b949 elementor-widget elementor-widget-topbar-icon-list" data-id="149b949" data-element_type="widget" data-widget_type="topbar-icon-list.default"> <div class="elementor-widget-container"> <div class="rt-features-list-content"> <ul class="rt-features-list separator_no border_no rotate_no"> <li> <div class="icon"></div> <div class="query-list"> <span class="sub-text"></span> <a href="tel:+97440000881"><span class="text-heading">+97440000881</span></a> </div> </li> </ul> </div> </div> </div> </div> </div> </div> </section> <section class="elementor-section elementor-inner-section elementor-element elementor-element-a75a01e elementor-section-content-middle elementor-section-boxed elementor-section-height-default elementor-section-height-default" data-id="a75a01e" data-element_type="section"> <div class="elementor-container elementor-column-gap-default"> <div class="elementor-column elementor-col-100 elementor-inner-column elementor-element elementor-element-42ac8d6" data-id="42ac8d6" data-element_type="column"> <div class="elementor-widget-wrap elementor-element-populated"> <div class="elementor-element elementor-element-a52c756 elementor-widget elementor-widget-rts-copyright" data-id="a52c756" data-element_type="widget" data-widget_type="rts-copyright.default"> <div class="elementor-widget-container"> <div class="react-copyright right"> <div class="description"> <p style="text-align: center">© 2024 GTC. All Right Reserved by <a href="https://marketing.gtc.qa">Gold Trading Marketing</a></p> </div> </div> </div> </div> </div> </div> </div> </section> </div> </div> </div> </section> </div> </div> </footer> </div><!-- #page --> <script> window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = true; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled'; </script> <script type='text/javascript'> const lazyloadRunObserver = () => { const lazyloadBackgrounds = document.querySelectorAll( `.e-con.e-parent:not(.e-lazyloaded)` ); const lazyloadBackgroundObserver = new IntersectionObserver( ( entries ) => { entries.forEach( ( entry ) => { if ( entry.isIntersecting ) { let lazyloadBackground = entry.target; if( lazyloadBackground ) { lazyloadBackground.classList.add( 'e-lazyloaded' ); } lazyloadBackgroundObserver.unobserve( entry.target ); } }); }, { rootMargin: '200px 0px 200px 0px' } ); lazyloadBackgrounds.forEach( ( lazyloadBackground ) => { lazyloadBackgroundObserver.observe( lazyloadBackground ); } ); }; const events = [ 'DOMContentLoaded', 'elementor/lazyload/observe', ]; events.forEach( ( event ) => { document.addEventListener( event, lazyloadRunObserver ); } ); </script> <script type='text/javascript'> (function () { var c = document.body.className; c = c.replace(/woocommerce-no-js/, 'woocommerce-js'); document.body.className = c; })(); </script> <link rel='stylesheet' id='wc-blocks-style-css' href='https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/client/blocks/wc-blocks.css?ver=wc-9.2.3' type='text/css' media='all' /> <link rel='stylesheet' id='elementor-post-5334-css' href='https://goldtradingqa.com/wp-content/uploads/elementor/css/post-5334.css?ver=1726185497' type='text/css' media='all' /> <link rel='stylesheet' id='e-animations-css' href='https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/animations/animations.min.css?ver=3.23.4' type='text/css' media='all' /> <link rel='stylesheet' id='rs-plugin-settings-css' href='//goldtradingqa.com/wp-content/plugins/revslider/sr6/assets/css/rs6.css?ver=6.7.12' type='text/css' media='all' /> <style id='rs-plugin-settings-inline-css' type='text/css'> #rs-demo-id {} </style> <script type="text/javascript" src="//goldtradingqa.com/wp-content/plugins/revslider/sr6/assets/js/rbtools.min.js?ver=6.7.12" defer async id="tp-tools-js"></script> <script type="text/javascript" src="//goldtradingqa.com/wp-content/plugins/revslider/sr6/assets/js/rs6.min.js?ver=6.7.12" defer async id="revmin-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/hover-revel.js?ver=201513434" id="hover-reveal-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/twinmax.js?ver=201513434" id="twinmax-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/aos.js?ver=201513434" id="aos-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/jQuery-plugin-progressbar.js?ver=201513434" id="jquery-plugin-progressbar-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/imagesloaded.min.js?ver=5.0.0" id="imagesloaded-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/rt-elements/assets/js/custom.js?ver=201513434" id="rsaddons-custom-pro-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/metform/public/assets/lib/cute-alert/cute-alert.js?ver=3.9.0" id="cute-alert-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/sourcebuster/sourcebuster.min.js?ver=9.2.3" id="sourcebuster-js-js"></script> <script type="text/javascript" id="wc-order-attribution-js-extra"> /* <![CDATA[ */ var wc_order_attribution = {"params":{"lifetime":1.0e-5,"session":30,"base64":false,"ajaxurl":"https:\/\/goldtradingqa.com\/wp-admin\/admin-ajax.php","prefix":"wc_order_attribution_","allowTracking":true},"fields":{"source_type":"current.typ","referrer":"current_add.rf","utm_campaign":"current.cmp","utm_source":"current.src","utm_medium":"current.mdm","utm_content":"current.cnt","utm_id":"current.id","utm_term":"current.trm","utm_source_platform":"current.plt","utm_creative_format":"current.fmt","utm_marketing_tactic":"current.tct","session_entry":"current_add.ep","session_start_time":"current_add.fd","session_pages":"session.pgs","session_count":"udata.vst","user_agent":"udata.uag"}}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/frontend/order-attribution.min.js?ver=9.2.3" id="wc-order-attribution-js"></script> <script type="text/javascript" id="eael-general-js-extra"> /* <![CDATA[ */ var localize = {"ajaxurl":"https:\/\/goldtradingqa.com\/wp-admin\/admin-ajax.php","nonce":"6fd70e9df6","i18n":{"added":"Added ","compare":"Compare","loading":"Loading..."},"eael_translate_text":{"required_text":"is a required field","invalid_text":"Invalid","billing_text":"Billing","shipping_text":"Shipping","fg_mfp_counter_text":"of"},"page_permalink":"https:\/\/goldtradingqa.com\/","cart_redirectition":"no","cart_page_url":"https:\/\/goldtradingqa.com\/shop\/cart\/","el_breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js?ver=6.0.3" id="eael-general-js"></script> <script type="text/javascript" id="wc-cart-fragments-js-extra"> /* <![CDATA[ */ var wc_cart_fragments_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_f017c57fa52f7b0d9eaf601c19e42b50","fragment_name":"wc_fragments_f017c57fa52f7b0d9eaf601c19e42b50","request_timeout":"5000"}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=9.2.3" id="wc-cart-fragments-js" defer="defer" data-wp-strategy="defer"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js?ver=3.23.3" id="elementor-pro-webpack-runtime-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js?ver=3.23.4" id="elementor-webpack-runtime-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/js/frontend-modules.min.js?ver=3.23.4" id="elementor-frontend-modules-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/dist/hooks.min.js?ver=2810c76e705dd1a53b18" id="wp-hooks-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script> <script type="text/javascript" id="wp-i18n-js-after"> /* <![CDATA[ */ wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } ); /* ]]> */ </script> <script type="text/javascript" id="elementor-pro-frontend-js-before"> /* <![CDATA[ */ var ElementorProFrontendConfig = {"ajaxurl":"https:\/\/goldtradingqa.com\/wp-admin\/admin-ajax.php","nonce":"3ac69ad443","urls":{"assets":"https:\/\/goldtradingqa.com\/wp-content\/plugins\/elementor-pro\/assets\/","rest":"https:\/\/goldtradingqa.com\/wp-json\/"},"shareButtonsNetworks":{"facebook":{"title":"Facebook","has_counter":true},"twitter":{"title":"Twitter"},"linkedin":{"title":"LinkedIn","has_counter":true},"pinterest":{"title":"Pinterest","has_counter":true},"reddit":{"title":"Reddit","has_counter":true},"vk":{"title":"VK","has_counter":true},"odnoklassniki":{"title":"OK","has_counter":true},"tumblr":{"title":"Tumblr"},"digg":{"title":"Digg"},"skype":{"title":"Skype"},"stumbleupon":{"title":"StumbleUpon","has_counter":true},"mix":{"title":"Mix"},"telegram":{"title":"Telegram"},"pocket":{"title":"Pocket","has_counter":true},"xing":{"title":"XING","has_counter":true},"whatsapp":{"title":"WhatsApp"},"email":{"title":"Email"},"print":{"title":"Print"},"x-twitter":{"title":"X"},"threads":{"title":"Threads"}},"woocommerce":{"menu_cart":{"cart_page_url":"https:\/\/goldtradingqa.com\/shop\/cart\/","checkout_page_url":"https:\/\/goldtradingqa.com\/shop\/checkout\/","fragments_nonce":"2ea02f5aed"}},"facebook_sdk":{"lang":"en_US","app_id":""},"lottie":{"defaultAnimationUrl":"https:\/\/goldtradingqa.com\/wp-content\/plugins\/elementor-pro\/modules\/lottie\/assets\/animations\/default.json"}}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor-pro/assets/js/frontend.min.js?ver=3.23.3" id="elementor-pro-frontend-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/lib/waypoints/waypoints.min.js?ver=4.0.2" id="elementor-waypoints-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-includes/js/jquery/ui/core.min.js?ver=1.13.3" id="jquery-ui-core-js"></script> <script type="text/javascript" id="elementor-frontend-js-before"> /* <![CDATA[ */ var elementorFrontendConfig = {"environmentMode":{"edit":false,"wpPreview":false,"isScriptDebug":false},"i18n":{"shareOnFacebook":"Share on Facebook","shareOnTwitter":"Share on Twitter","pinIt":"Pin it","download":"Download","downloadImage":"Download image","fullscreen":"Fullscreen","zoom":"Zoom","share":"Share","playVideo":"Play Video","previous":"Previous","next":"Next","close":"Close","a11yCarouselWrapperAriaLabel":"Carousel | Horizontal scrolling: Arrow Left & Right","a11yCarouselPrevSlideMessage":"Previous slide","a11yCarouselNextSlideMessage":"Next slide","a11yCarouselFirstSlideMessage":"This is the first slide","a11yCarouselLastSlideMessage":"This is the last slide","a11yCarouselPaginationBulletMessage":"Go to slide"},"is_rtl":false,"breakpoints":{"xs":0,"sm":480,"md":768,"lg":1025,"xl":1440,"xxl":1600},"responsive":{"breakpoints":{"mobile":{"label":"Mobile Portrait","value":767,"default_value":767,"direction":"max","is_enabled":true},"mobile_extra":{"label":"Mobile Landscape","value":880,"default_value":880,"direction":"max","is_enabled":false},"tablet":{"label":"Tablet Portrait","value":1024,"default_value":1024,"direction":"max","is_enabled":true},"tablet_extra":{"label":"Tablet Landscape","value":1200,"default_value":1200,"direction":"max","is_enabled":false},"laptop":{"label":"Laptop","value":1366,"default_value":1366,"direction":"max","is_enabled":false},"widescreen":{"label":"Widescreen","value":2400,"default_value":2400,"direction":"min","is_enabled":false}}},"version":"3.23.4","is_static":false,"experimentalFeatures":{"e_optimized_css_loading":true,"e_font_icon_svg":true,"additional_custom_breakpoints":true,"container":true,"container_grid":true,"e_swiper_latest":true,"e_nested_atomic_repeaters":true,"e_onboarding":true,"theme_builder_v2":true,"home_screen":true,"ai-layout":true,"landing-pages":true,"e_lazyload":true,"display-conditions":true,"form-submissions":true,"taxonomy-filter":true},"urls":{"assets":"https:\/\/goldtradingqa.com\/wp-content\/plugins\/elementor\/assets\/","ajaxurl":"https:\/\/goldtradingqa.com\/wp-admin\/admin-ajax.php"},"nonces":{"floatingButtonsClickTracking":"525652bd24"},"swiperClass":"swiper","settings":{"page":[],"editorPreferences":[]},"kit":{"active_breakpoints":["viewport_mobile","viewport_tablet"],"global_image_lightbox":"yes","lightbox_enable_counter":"yes","lightbox_enable_fullscreen":"yes","lightbox_enable_zoom":"yes","lightbox_enable_share":"yes","lightbox_title_src":"title","lightbox_description_src":"description","woocommerce_notices_elements":[]},"post":{"id":10136,"title":"Gold%20Trading","excerpt":"","featuredImage":false}}; /* ]]> */ </script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor/assets/js/frontend.min.js?ver=3.23.4" id="elementor-frontend-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js?ver=3.23.3" id="pro-elements-handlers-js"></script> <script type="text/javascript" src="https://goldtradingqa.com/wp-content/plugins/metform-pro/public/assets/js/repeater.js?ver=3.8.2" id="metform-pro-repeater-js"></script> </body> </html>