{"id":24153,"date":"2018-11-16T17:36:30","date_gmt":"2018-11-16T14:36:30","guid":{"rendered":"https:\/\/codex-themes.com\/thegem\/business-multipurpose\/?page_id=24153"},"modified":"2025-09-25T13:15:00","modified_gmt":"2025-09-25T13:15:00","slug":"our-services","status":"publish","type":"page","link":"https:\/\/nationalexchangeqatar.com\/ar\/our-services\/","title":{"rendered":"\u062e\u062f\u0645\u0627\u062a\u0646\u0627"},"content":{"rendered":"<section class=\"wpb-content-wrapper\"><div id=\"vc_row-69e1223d6c881\" class=\"vc_row wpb_row vc_row-fluid thegem-custom-69e1223d6c8674048\"><div class=\"wpb_column vc_column_container vc_col-sm-12 thegem-custom-69e1223d6cd941594\" ><div class=\"vc_column-inner thegem-custom-inner-69e1223d6cd96 \"><div class=\"wpb_wrapper thegem-custom-69e1223d6cd941594\">\n\t<div class=\"wpb_raw_code wpb_content_element wpb_raw_html\" >\n\t\t<div class=\"wpb_wrapper\">\n\t\t\t<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>Our Services - National Exchange Qatar<\/title>\n    <style>\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: 'Arial', sans-serif;\n            line-height: 1.6;\n            color: #333;\n            background-color: #f8f9fa;\n        }\n\n        .container {\n            max-width: 1200px;\n            margin: 0 auto;\n            padding: 0;\n        }\n\n\n\n        \/* Service Section Styles *\/\n        .services-container {\n            padding: 0;\n        }\n\n        .service-section {\n            \/* ADDED SPACE BELOW EACH SECTION *\/\n            margin-bottom: 80px; \n            opacity: 0;\n            transform: translateY(30px);\n            transition: all 0.8s ease-out;\n        }\n\n        .service-section.animate {\n            opacity: 1;\n            transform: translateY(0);\n        }\n\n        .service-content {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 60px;\n            align-items: center;\n            background: white;\n            border-radius: 20px;\n            padding: 60px;\n            box-shadow: 0 20px 40px rgba(0,0,0,0.1);\n            position: relative;\n            overflow: hidden;\n            margin: 0;\n            \/* Added min-height to help define the section height for 100% image height *\/\n            min-height: 400px; \n        }\n\n        .service-content::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            height: 5px;\n            background: linear-gradient(90deg, #20b2aa, #1e90ff);\n        }\n\n        .service-content.reverse {\n            direction: rtl;\n        }\n\n        .service-content.reverse > * {\n            direction: ltr;\n        }\n\n        .service-image {\n            text-align: center;\n            \/* Ensure the image container takes up full height of the grid cell *\/\n            height: 100%; \n            display: flex; \/* Helps align the image when using object-fit *\/\n            align-items: center;\n            justify-content: center;\n        }\n\n        .service-image img {\n            \/* MADE IMAGE TAKE FULL HEIGHT OF ITS CONTAINER *\/\n            height: 100%; \n            \/* MADE IMAGE WIDTH SMALLER *\/\n            max-width: 100%; \n            \/* Ensures image covers the area and maintains aspect ratio *\/\n            object-fit: cover; \n            border-radius: 15px;\n            box-shadow: 0 10px 30px rgba(0,0,0,0.2);\n            transition: transform 0.3s ease;\n        }\n\n        .service-image img:hover {\n            transform: scale(1.05);\n        }\n\n        .service-info h2 {\n            \/* H2 FONT SIZE REMAINS BIGGER *\/\n            font-size: 3.5rem;\n            margin-bottom: 25px;\n            color: #1e3c72;\n            position: relative;\n        }\n\n        .service-info h2::after {\n            content: '';\n            position: absolute;\n            bottom: -10px;\n            left: 0;\n            width: 80px;\n            height: 4px; \/* Slightly thicker line for bigger title *\/\n            background: linear-gradient(90deg, #20b2aa, #1e90ff);\n        }\n\n        .service-info p {\n            \/* PARAGRAPH FONT SIZE REMAINS BIGGER *\/\n            font-size: 1.3rem;\n            line-height: 1.8;\n            margin-bottom: 25px;\n            color: #555;\n        }\n\n        .service-features {\n            list-style: none;\n            margin-top: 30px;\n        }\n\n        .service-features li {\n            padding: 12px 0;\n            padding-left: 35px;\n            position: relative;\n            \/* LIST ITEM FONT SIZE REMAINS BIGGER *\/\n            font-size: 1.2rem;\n            color: #666;\n        }\n\n        .service-features li::before {\n            content: '\u2713';\n            position: absolute;\n            left: 0;\n            color: #20b2aa;\n            font-weight: bold;\n            \/* LIST ITEM ICON SIZE REMAINS BIGGER *\/\n            font-size: 1.4rem;\n        }\n\n        \/* Color variants for different sections *\/\n        .currency-section .service-content::before {\n            background: linear-gradient(90deg, #20b2aa, #48cae4);\n        }\n\n        .gold-section .service-content::before {\n            background: linear-gradient(90deg, #ffd700, #ffb347);\n        }\n\n        .transfer-section .service-content::before {\n            background: linear-gradient(90deg, #1e90ff, #4169e1);\n        }\n\n        .speed-section .service-content::before {\n            background: linear-gradient(90deg, #32cd32, #00fa9a);\n        }\n\n        .telex-section .service-content::before {\n            background: linear-gradient(90deg, #ff6b6b, #ff8e53);\n        }\n\n\n\n        \/* Animations *\/\n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(30px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        @keyframes countUp {\n            from {\n                opacity: 0;\n                transform: scale(0.5);\n            }\n            to {\n                opacity: 1;\n                transform: scale(1);\n            }\n        }\n\n        @keyframes float {\n            0%, 100% { transform: translateY(0px); }\n            50% { transform: translateY(-10px); }\n        }\n\n        .floating {\n            animation: float 3s ease-in-out infinite;\n        }\n\n        \/* Responsive Design *\/\n        @media (max-width: 968px) {\n            .service-content {\n                grid-template-columns: 1fr;\n                gap: 40px;\n                padding: 40px;\n                min-height: auto; \/* Reset min-height on small screens *\/\n            }\n            .service-image {\n                height: auto;\n            }\n            .service-info h2 {\n                font-size: 2.5rem; \/* Adjust h2 for smaller screens *\/\n            }\n            .service-info p {\n                font-size: 1.1rem; \/* Adjust p for smaller screens *\/\n            }\n            .service-features li {\n                font-size: 1.1rem; \/* Adjust list for smaller screens *\/\n            }\n            .service-image img {\n                \/* Ensure image stays within bounds on mobile\/tablet *\/\n                max-width: 100%; \n                height: auto; \n                object-fit: contain; \/* Switch to contain on mobile *\/\n            }\n        }\n\n        @media (max-width: 768px) {\n            .service-content {\n                padding: 30px;\n            }\n\n            .service-info h2 {\n                font-size: 2rem;\n            }\n\n            .service-info p {\n                font-size: 1rem;\n            }\n             .service-features li {\n                font-size: 1rem;\n            }\n\n            .services-container {\n                padding: 0;\n            }\n\n            .service-section {\n                \/* Reduced margin for mobile\/tablet view *\/\n                margin-bottom: 50px; \n            }\n        }\n\n        @media (max-width: 480px) {\n            .service-content {\n                padding: 20px;\n            }\n\n            .service-info h2 {\n                font-size: 1.5rem;\n            }\n        }\n    <\/style>\n<\/head>\n<body>\n    \n    <div class=\"services-container\">\n        <div class=\"container\">\n            \n            <section class=\"service-section currency-section\" id=\"currency\">\n                <div class=\"service-content\">\n                    <div class=\"service-image floating\">\n                        <img decoding=\"async\" src=\"http:\/\/nationalexchangeqatar.com\/wp-content\/uploads\/2025\/09\/Gemini_Generated_Image_ie9tpbie9tpbie9t.png\" alt=\"Foreign Currency Exchange\">\n                    <\/div>\n                    <div class=\"service-info\">\n                        <h2>BUY & SELL FOREIGN CURRENCIES<\/h2>\n                        <p>We buy and sell all major foreign currencies at the best price in the market. Our comprehensive currency exchange service ensures you get competitive rates for your international financial needs.<\/p>\n                        <p>Whether you're traveling abroad, conducting business internationally, or need foreign currency for any other purpose, we provide reliable and efficient currency exchange services with transparent pricing and no hidden fees.<\/p>\n                        <ul class=\"service-features\">\n                            <li>Competitive exchange rates updated in real-time<\/li>\n                            <li>All major international currencies available<\/li>\n                            <li>Quick and secure transactions<\/li>\n                            <li>Professional and experienced staff<\/li>\n                            <li>Transparent pricing with no hidden charges<\/li>\n                            <li>Convenient locations throughout Qatar<\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/section>\n\n            <section class=\"service-section gold-section\" id=\"gold\">\n                <div class=\"service-content reverse\">\n                    <div class=\"service-info\">\n                        <h2>GOLD BARS & COINS<\/h2>\n                        <p>Our gold bars are of the best price, high quality, and Swiss made, with weights ranging from 1 gram to 1 kilogram. We offer a premium selection of gold investment products for both collectors and investors.<\/p>\n                        <p>Each gold bar and coin comes with proper certification and authenticity guarantee. Our gold products are perfect for portfolio diversification, wealth preservation, and long-term investment strategies.<\/p>\n                        <ul class=\"service-features\">\n                            <li>Swiss-made gold bars of highest quality<\/li>\n                            <li>Various denominations from 1g to 1kg<\/li>\n                            <li>Certified authentic gold coins<\/li>\n                            <li>Competitive pricing and fair buyback rates<\/li>\n                            <li>Secure storage and handling<\/li>\n                            <li>Investment consultation services<\/li>\n                        <\/ul>\n                    <\/div>\n                    <div class=\"service-image floating\">\n                        <img decoding=\"async\" src=\"http:\/\/nationalexchangeqatar.com\/wp-content\/uploads\/2025\/09\/Gemini_Generated_Image_ie9tpbie9tpbie9t-1.png\" alt=\"Gold Bars and Coins\">\n                    <\/div>\n                <\/div>\n            <\/section>\n\n            <section class=\"service-section transfer-section\" id=\"transfer\">\n                <div class=\"service-content\">\n                    <div class=\"service-image floating\">\n                        <img decoding=\"async\" src=\"http:\/\/nationalexchangeqatar.com\/wp-content\/uploads\/2025\/09\/Gemini_Generated_Image_ie9tpbie9tpbie9t-2.png\" alt=\"Online Money Transfer\">\n                    <\/div>\n                    <div class=\"service-info\">\n                        <h2>ONLINE TRANSFER<\/h2>\n                        <p>Send money online anytime, anywhere with National Exchange mobile app RIGHT NOW! Our cutting-edge online transfer platform provides a seamless and secure way to send money internationally.<\/p>\n                        <p>With our user-friendly mobile application and web platform, you can transfer money to your loved ones across the globe within minutes. Enjoy competitive exchange rates, low fees, and real-time transaction tracking.<\/p>\n                        <ul class=\"service-features\">\n                            <li>24\/7 online money transfer service<\/li>\n                            <li>Mobile app for iOS and Android<\/li>\n                            <li>Real-time transaction tracking<\/li>\n                            <li>Multiple payment methods accepted<\/li>\n                            <li>Instant notifications and confirmations<\/li>\n                            <li>Secure encryption and data protection<\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/section>\n\n            <section class=\"service-section speed-section\" id=\"speed\">\n                <div class=\"service-content reverse\">\n                    <div class=\"service-info\">\n                        <h2>SPEED TRANSFERS<\/h2>\n                        <p>State Bank of India, Syndicate Bank, Federal Bank Ltd & All Branches in India. We provide lightning-fast money transfer services to major Indian banks with same-day processing capabilities.<\/p>\n                        <p>Our speed transfer service ensures your money reaches its destination quickly and securely. With partnerships with major Indian banks, we guarantee reliable and efficient transfer processing for urgent financial needs.<\/p>\n                        <ul class=\"service-features\">\n                            <li>Same-day transfer processing<\/li>\n                            <li>Direct partnerships with major Indian banks<\/li>\n                            <li>Competitive exchange rates<\/li>\n                            <li>Secure and reliable transactions<\/li>\n                            <li>SMS and email confirmations<\/li>\n                            <li>Track your transfer in real-time<\/li>\n                        <\/ul>\n                    <\/div>\n                    <div class=\"service-image floating\">\n                        <img decoding=\"async\" src=\"http:\/\/nationalexchangeqatar.com\/wp-content\/uploads\/2025\/09\/Gemini_Generated_Image_ie9tpbie9tpbie9t-3.png\" alt=\"Speed Transfers\">\n                    <\/div>\n                <\/div>\n            <\/section>\n\n            <section class=\"service-section telex-section\" id=\"telex\">\n                <div class=\"service-content\">\n                    <div class=\"service-image floating\">\n                        <img decoding=\"async\" src=\"http:\/\/nationalexchangeqatar.com\/wp-content\/uploads\/2025\/09\/Gemini_Generated_Image_ie9tpbie9tpbie9t-4.png\" alt=\"Telex Transfers\">\n                    <\/div>\n                    <div class=\"service-info\">\n                        <h2>TELEX TRANSFERS SERVICES<\/h2>\n                        <p>To All Over the World. We support +60,000 Branches of All Banks in India and provide comprehensive telex transfer services to destinations worldwide with unmatched reliability.<\/p>\n                        <p>Our telex transfer network spans across continents, ensuring your money reaches virtually any destination globally. With established correspondent banking relationships and advanced technology, we provide secure international wire transfers.<\/p>\n                        <ul class=\"service-features\">\n                            <li>Global network covering all continents<\/li>\n                            <li>60,000+ bank branches in India<\/li>\n                            <li>Secure SWIFT network transfers<\/li>\n                            <li>Competitive international rates<\/li>\n                            <li>Full transaction transparency<\/li>\n                            <li>Expert customer support<\/li>\n                        <\/ul>\n                    <\/div>\n                <\/div>\n            <\/section>\n\n        <\/div>\n    <\/div>\n\n\n\n    <script>\n        \/\/ Intersection Observer for animations\n        const observerOptions = {\n            threshold: 0.2,\n            rootMargin: '0px 0px -100px 0px'\n        };\n\n        const observer = new IntersectionObserver(function(entries) {\n            entries.forEach(entry => {\n                if (entry.isIntersecting) {\n                    entry.target.classList.add('animate');\n                }\n            });\n        }, observerOptions);\n\n        \/\/ Observe all service sections\n        document.querySelectorAll('.service-section').forEach(section => {\n            observer.observe(section);\n        });\n\n        \/\/ Smooth scrolling for anchor links\n        document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n            anchor.addEventListener('click', function (e) {\n                e.preventDefault();\n                const target = document.querySelector(this.getAttribute('href'));\n                if (target) {\n                    target.scrollIntoView({\n                        behavior: 'smooth',\n                        block: 'start'\n                    });\n                }\n            });\n        });\n\n        \/\/ Add parallax effect to floating elements\n        window.addEventListener('scroll', function() {\n            const scrolled = window.pageYOffset;\n            const floatingElements = document.querySelectorAll('.floating');\n            floatingElements.forEach(element => {\n                element.style.transform = `translateY(${scrolled * 0.1}px)`;\n            });\n        });\n\n        \/\/ Add hover effects to service cards\n        document.querySelectorAll('.service-content').forEach(card => {\n            card.addEventListener('mouseenter', function() {\n                this.style.transform = 'translateY(-5px)';\n                this.style.boxShadow = '0 30px 60px rgba(0,0,0,0.15)';\n            });\n            \n            card.addEventListener('mouseleave', function() {\n                this.style.transform = 'translateY(0)';\n                this.style.boxShadow = '0 20px 40px rgba(0,0,0,0.1)';\n            });\n        });\n    <\/script>\n<\/body>\n<\/html>\n\t\t<\/div>\n\t<\/div>\n<\/div><\/div><\/div><\/div>\n<\/section>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_eb_attr":"","_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"class_list":["post-24153","page","type-page","status-publish"],"_links":{"self":[{"href":"https:\/\/nationalexchangeqatar.com\/ar\/wp-json\/wp\/v2\/pages\/24153","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nationalexchangeqatar.com\/ar\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nationalexchangeqatar.com\/ar\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nationalexchangeqatar.com\/ar\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/nationalexchangeqatar.com\/ar\/wp-json\/wp\/v2\/comments?post=24153"}],"version-history":[{"count":17,"href":"https:\/\/nationalexchangeqatar.com\/ar\/wp-json\/wp\/v2\/pages\/24153\/revisions"}],"predecessor-version":[{"id":25716,"href":"https:\/\/nationalexchangeqatar.com\/ar\/wp-json\/wp\/v2\/pages\/24153\/revisions\/25716"}],"wp:attachment":[{"href":"https:\/\/nationalexchangeqatar.com\/ar\/wp-json\/wp\/v2\/media?parent=24153"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}