{"id":46,"date":"2025-09-16T12:56:09","date_gmt":"2025-09-16T12:56:09","guid":{"rendered":"https:\/\/travelab-consulting.com\/?page_id=46"},"modified":"2025-10-19T23:19:32","modified_gmt":"2025-10-19T23:19:32","slug":"about-us","status":"publish","type":"page","link":"https:\/\/travelab-consulting.com\/?page_id=46","title":{"rendered":"About Us"},"content":{"rendered":"\n<div class=\"wp-block-uagb-container uagb-block-f36934bd alignfull uagb-is-root-container\">\n<style>\n  * {\n    margin: 0;\n    padding: 0;\n    box-sizing: border-box;\n  }\n\n  body {\n    overflow-x: hidden;\n    overflow-y: auto;\n    width: 100%;\n    position: relative;\n  }\n\n  .video-container {\n    width: 100vw;\n    position: relative;\n    overflow: hidden;\n    margin: 0;\n    padding: 0;\n    display: block;\n    z-index: 1;\n  }\n\n  .video-overlay {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    z-index: 10;\n    pointer-events: none;\n    opacity: 0;\n    transition: opacity 1.5s ease-out;\n  }\n\n  .overlay-text {\n    color: white;\n    font-size: 2rem;\n    font-weight: bold;\n    text-align: center;\n    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);\n    margin: 0;\n    padding: 20px;\n    z-index: 1000;\n    max-width: 90%;\n    opacity: 0;\n    transform: translateY(20px);\n    transition: opacity 1.5s ease-out, transform 1.5s ease-out;\n  }\n\n  .fullwidth-video {\n    width: 100%;\n    height: auto;\n    display: block;\n    object-fit: cover;\n    object-position: center;\n    min-height: 300px;\n    max-height: 80vh;\n    margin: 0;\n    padding: 0;\n    opacity: 0;\n    transition: opacity 1.5s ease-out;\n  }\n\n  \/* Fade in when loaded *\/\n  .fullwidth-video.loaded {\n    opacity: 1;\n  }\n\n  .video-overlay.visible {\n    opacity: 1;\n  }\n\n  .overlay-text.visible {\n    opacity: 1;\n    transform: translateY(0);\n  }\n\n  \/* Hide controls *\/\n  .fullwidth-video::-webkit-media-controls,\n  .fullwidth-video::-webkit-media-controls-panel,\n  .fullwidth-video::-webkit-media-controls-play-button,\n  .fullwidth-video::-webkit-media-controls-start-playback-button,\n  .fullwidth-video::-moz-media-controls {\n    display: none !important;\n  }\n\n  .fullwidth-video::cue {\n    display: none;\n  }\n\n  \/* Mobile: Fullscreen video *\/\n  @media (max-width: 768px) {\n    .fullwidth-video {\n      min-height: 100vh; \/* Full screen height on mobile *\/\n      max-height: none;\n      height: 100vh;\n    }\n    .video-overlay {\n      padding: 0 10px;\n    }\n    .overlay-text {\n      font-size: 1.8rem;\n      padding: 15px;\n    }\n  }\n\n  @media (max-width: 480px) {\n    .overlay-text {\n      font-size: 1.5rem;\n      padding: 10px;\n    }\n  }\n\n  @media (max-width: 320px) {\n    .overlay-text {\n      font-size: 1.2rem;\n      padding: 8px;\n    }\n  }\n\n  @media (min-width: 1025px) {\n    .fullwidth-video {\n      min-height: 400px;\n      max-height: 80vh;\n    }\n  }\n<\/style>\n\n<section class=\"video-container\">\n  <video \n    id=\"autoVideo\" \n    class=\"fullwidth-video\" \n    muted \n    loop \n    autoplay \n    playsinline\n    preload=\"none\"\n    data-src=\"https:\/\/travelab-consulting.com\/wp-content\/uploads\/2025\/09\/Whisk_cdz4egzyatmhddml1yn4qmytgzn4qtlmrtnw0cn.mp4\">\n    <source data-src=\"https:\/\/travelab-consulting.com\/wp-content\/uploads\/2025\/09\/Whisk_cdz4egzyatmhddml1yn4qmytgzn4qtlmrtnw0cn.mp4\" type=\"video\/mp4\">\n    Your browser does not support the video tag.\n  <\/video>\n  <div class=\"video-overlay\">\n    <h2 class=\"overlay-text\">Your Trusted Partner in Travel, Since 2019.<\/h2>\n  <\/div>\n<\/section>\n\n<script>\n  function lazyLoadVideo() {\n    const video = document.getElementById('autoVideo');\n    const videoSrc = video.getAttribute('data-src');\n    const source = video.querySelector('source');\n\n    if (videoSrc && source) {\n      video.src = videoSrc;\n      source.src = videoSrc;\n      video.removeAttribute('data-src');\n      source.removeAttribute('data-src');\n      video.load();\n\n      video.addEventListener('loadeddata', () => {\n        \/\/ Add 'loaded' class to trigger fade-in\n        video.classList.add('loaded');\n        setTimeout(() => {\n          const overlay = document.querySelector('.video-overlay');\n          const text = document.querySelector('.overlay-text');\n          overlay.classList.add('visible');\n          text.classList.add('visible');\n        }, 300); \/\/ Slight delay so video appears first\n\n        video.play().catch(e => console.warn('Autoplay failed:', e));\n      }, { once: true });\n    }\n  }\n\n  const observer = new IntersectionObserver((entries) => {\n    entries.forEach(entry => {\n      if (entry.isIntersecting) {\n        lazyLoadVideo();\n        observer.unobserve(entry.target);\n      }\n    });\n  }, { threshold: 0.1 });\n\n  document.addEventListener('DOMContentLoaded', () => {\n    const video = document.getElementById('autoVideo');\n    if ('IntersectionObserver' in window) {\n      observer.observe(video);\n    } else {\n      setTimeout(lazyLoadVideo, 500);\n    }\n  });\n\n  document.addEventListener('visibilitychange', () => {\n    const video = document.getElementById('autoVideo');\n    if (!document.hidden && video && video.paused) {\n      video.play().catch(e => console.warn('Play failed on visibility change:', e));\n    }\n  });\n<\/script>\n<\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-5d59ac2f alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-container uagb-block-eb4dad47\">\n<div class=\"wp-block-uagb-advanced-heading uagb-block-d0a9795b\"><h3 class=\"uagb-heading-text\">About Us<\/h3><\/div>\n\n\n\n<div class=\"wp-block-uagb-advanced-heading uagb-block-d5203733\"><div class=\"uagb-heading-text\">Our Story and Expertise<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-advanced-heading uagb-block-1e7aedb9\"><div class=\"uagb-heading-text\">With over 20 years of experience in tourism and travel, Travelab is your trusted partner.&nbsp;<br>Our team has worked with top airlines and many hotels and supported visa processes for different embassies. Having visited more than 20 countries ourselves, we bring real travel knowledge and passion to our work.&nbsp;<br>Since 2019, we\u2019ve built Travelab to give Arab travelers a safe, simple, and complete platform.&nbsp;<br>Our goal is to help you plan, book, and enjoy your trips with confidence.<br><\/div><\/div>\n<\/div>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-83ce578f alignfull uagb-is-root-container\">\n<div class=\"wp-block-uagb-container uagb-block-387259d2 alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-advanced-heading uagb-block-85aa470d\"><h2 class=\"uagb-heading-text\">Our mission<\/h2><\/div>\n\n\n\n<div class=\"wp-block-uagb-advanced-heading uagb-block-a72f6daf\"><div class=\"uagb-heading-text\"><strong>is to make your travel easier and better every day. With quick support, smooth follow-up, and strong partner cooperation, our customer-first team works to keep you happy and make every trip simple and enjoyable.<\/strong><\/div><\/div>\n\n\n\n<div style=\"height:54px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-85f54f59 alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-container uagb-block-149966a3\">\n<div class=\"wp-block-uagb-advanced-heading uagb-block-378cd852\"><h2 class=\"uagb-heading-text\"><strong>Building Trust Through Reliability<\/strong><br><\/h2><\/div>\n\n\n\n<div class=\"wp-block-uagb-advanced-heading uagb-block-68fea664\"><h4 class=\"uagb-heading-text\">We are committed to delivering transparent, secure, and dependable travel services that strengthen our travelers\u2019 confidence in every journey.<\/h4><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-1fbc026f\">\n<div class=\"wp-block-uagb-advanced-heading uagb-block-85358ff3\"><h2 class=\"uagb-heading-text\"><strong>Inspiring Exploration and Connection<\/strong><br><\/h2><\/div>\n\n\n\n<div class=\"wp-block-uagb-advanced-heading uagb-block-3ef8be04\"><h4 class=\"uagb-heading-text\">Our mission goes beyond travel; we aim to open doors to new cultures, authentic experiences, and memorable adventures tailored to every traveler.<\/h4><\/div>\n<\/div>\n<\/div><\/div>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-d489bd37 alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-advanced-heading uagb-block-521b5832\"><h2 class=\"uagb-heading-text\">Our vision<\/h2><div class=\"uagb-separator\"><\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-advanced-heading uagb-block-21527c50\"><h4 class=\"uagb-heading-text\"><strong>is to be the trusted digital home for Arab travelers worldwide \u2014 offering everything from exploration and comparison to secure booking, making the whole world within reach.<\/strong><\/h4><\/div>\n<\/div><\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-8e0a2e58 alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-advanced-heading uagb-block-70b12277\"><h2 class=\"uagb-heading-text\">what we do?<\/h2><\/div>\n\n\n\n<div class=\"wp-block-uagb-advanced-heading uagb-block-6f1c6199\"><div class=\"uagb-heading-text\">We are your one-stop travel consultant. Having more than 20 years of experience, we take care of all your traveling needs, such as business-class flights, 5-star hotel stays, private transfers, and special loyalty schemes. We offer tailor-made packages for individuals, companies, universities, and schools with substantial discounts (25% on rentals) and supporting services such as visa issue and flexible installment plans.<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-d81916fb alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<div class=\"wp-block-uagb-container uagb-block-aa3861a0\">\n<div data-aos= \"slide-right\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-container uagb-block-cf836f3f\">\n<div data-aos= \"zoom-in\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-advanced-heading uagb-block-fc980123\"><h2 class=\"uagb-heading-text\">Premium Flight Booking<\/h2><\/div>\n<\/div>\n\n\n\n<div data-aos= \"slide-down\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-container uagb-block-c3effe38\">\n<div data-aos= \"zoom-in\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-advanced-heading uagb-block-060b1f23\"><h2 class=\"uagb-heading-text\">Luxury Hotel Stays<\/h2><\/div>\n<\/div>\n\n\n\n<div data-aos= \"slide-left\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-container uagb-block-95205724\">\n<div data-aos= \"zoom-in\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-advanced-heading uagb-block-c7bade79\"><h2 class=\"uagb-heading-text\">Private Transfers<\/h2><\/div>\n<\/div>\n<\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-b0625d53\">\n<div data-aos= \"slide-right\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-container uagb-block-d0a59729\">\n<div data-aos= \"zoom-in\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-advanced-heading uagb-block-8f5094cc\"><h2 class=\"uagb-heading-text\"><strong>Custom Travel Packages<\/strong><\/h2><\/div>\n<\/div>\n\n\n\n<div data-aos= \"slide-up\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-container uagb-block-dfb869a6\">\n<div data-aos= \"zoom-in\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-advanced-heading uagb-block-6a3be11f\"><h2 class=\"uagb-heading-text\">Visa &amp; Travel Assistance<\/h2><\/div>\n<\/div>\n\n\n\n<div data-aos= \"slide-left\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-container uagb-block-19a4df9c\">\n<div data-aos= \"zoom-in\" data-aos-duration=\"400\" data-aos-delay=\"0\" data-aos-easing=\"ease\" data-aos-once=\"true\" class=\"wp-block-uagb-advanced-heading uagb-block-5c004f49\"><h2 class=\"uagb-heading-text\">Flexible Payment Plans<\/h2><\/div>\n<\/div>\n<\/div>\n<\/div><\/div>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-dfab70a6 alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<style>\n  :root {\n    \/* Travelab Color Palette *\/\n    --travelab-color-primary: #85C20E;\n    --travelab-color-primary-dark: #2F4F1F;\n    --travelab-color-text: #333333;\n    --travelab-color-white: #FFFFFF;\n    --travelab-color-primary-tint-10: rgba(133, 194, 14, 0.1);\n    --travelab-color-primary-tint-05: rgba(133, 194, 14, 0.05);\n    --travelab-color-primary-shadow-hover: rgba(133, 194, 14, 0.5);\n    --travelab-color-primary-shadow-active: rgba(133, 194, 14, 0.4);\n  }\n\n  .travelab-hero-section {\n    width: 100%;\n    position: relative;\n    overflow: hidden;\n    background: var(--travelab-color-white);\n  }\n\n  .travelab-hero {\n    min-height: 60vh;\n    max-height: 75vh;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    padding: 2rem 1rem;\n    color: var(--travelab-color-text);\n    position: relative;\n    text-align: center;\n    z-index: 1;\n    background: var(--travelab-color-white);\n  }\n\n  .travelab-hero-content {\n    max-width: 1200px;\n    width: 100%;\n    padding: 0 1.5rem;\n    z-index: 2;\n    opacity: 0;\n    transform: translateY(20px);\n    animation: fadeInUp 1s ease forwards;\n  }\n\n  @keyframes fadeInUp {\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  .travelab-hero h1 {\n    font-size: clamp(1.75rem, 8vw, 3.5rem);\n    font-weight: 900;\n    line-height: 1.15;\n    margin-bottom: 0.75rem;\n    color: var(--travelab-color-primary-dark);\n  }\n\n  .travelab-hero p {\n    font-size: clamp(0.95rem, 4vw, 1.25rem);\n    line-height: 1.55;\n    margin-bottom: 1.25rem;\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n    color: var(--travelab-color-text);\n  }\n\n  .travelab-tagline {\n    font-size: clamp(0.8rem, 2.8vw, 1.1rem);\n    font-weight: 600;\n    color: var(--travelab-color-primary);\n    margin-bottom: 1.5rem;\n    text-transform: uppercase;\n    letter-spacing: 1.2px;\n    background: var(--travelab-color-primary-tint-10);\n    display: inline-block;\n    padding: 0.45rem 1.1rem;\n    border-radius: 30px;\n  }\n\n  .travelab-benefit-grid {\n    display: grid;\n    gap: 0.9rem;\n    margin: 1.5rem 0;\n    max-width: 900px;\n    margin-left: auto;\n    margin-right: auto;\n    text-align: center;\n  }\n\n  .travelab-benefit-row {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));\n    gap: 0.8rem;\n    justify-content: center;\n    align-items: center;\n  }\n\n  .travelab-benefit-item {\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    gap: 0.5rem;\n    font-size: clamp(0.8rem, 2.4vw, 1rem);\n    background: var(--travelab-color-primary-tint-05);\n    padding: 0.6rem 1rem;\n    border-radius: 50px;\n    color: var(--travelab-color-text);\n    white-space: normal;\n    text-align: center;\n  }\n\n  .travelab-benefit-item::before {\n    content: \"\u2713\";\n    color: var(--travelab-color-primary);\n    font-weight: bold;\n    flex-shrink: 0;\n  }\n\n  .travelab-hero-buttons {\n    display: flex;\n    flex-wrap: wrap;\n    justify-content: center;\n    gap: 1rem;\n    margin-top: 1.25rem;\n  }\n\n  .travelab-btn {\n    padding: 0.95rem 1.8rem;\n    border-radius: 50px;\n    font-weight: 700;\n    font-size: clamp(0.9rem, 2.8vw, 1.1rem);\n    text-decoration: none;\n    display: inline-flex;\n    align-items: center;\n    justify-content: center;\n    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n    border: none;\n    cursor: pointer;\n    min-width: 160px;\n    box-shadow: 0 4px 12px rgba(0,0,0,0.08);\n    color: inherit;\n    background: transparent;\n    outline: none;\n  }\n\n  .travelab-btn,\n  .travelab-btn:link,\n  .travelab-btn:visited,\n  .travelab-btn:hover,\n  .travelab-btn:active,\n  .travelab-btn:focus {\n    text-decoration: none !important;\n    color: inherit !important;\n    outline: none !important;\n    border: none !important;\n  }\n\n  .travelab-btn-primary {\n    background: linear-gradient(135deg, var(--travelab-color-primary) 0%, var(--travelab-color-primary-dark) 100%);\n    color: white;\n  }\n\n  .travelab-btn-primary:hover {\n    transform: translateY(-4px) scale(1.03);\n    box-shadow: 0 8px 24px var(--travelab-color-primary-shadow-hover);\n    filter: brightness(1.05);\n  }\n\n  .travelab-btn-primary:active {\n    transform: translateY(-2px) scale(1.01);\n    box-shadow: 0 4px 16px var(--travelab-color-primary-shadow-active);\n  }\n\n  .travelab-btn-secondary {\n    background: transparent;\n    color: var(--travelab-color-primary-dark);\n    border: 2px solid var(--travelab-color-primary);\n  }\n\n  .travelab-btn-secondary:hover {\n    background: rgba(133, 194, 14, 0.08);\n    color: var(--travelab-color-primary-dark);\n    transform: translateY(-4px);\n    border-color: var(--travelab-color-primary);\n  }\n\n  .travelab-btn-secondary:active {\n    background: rgba(133, 194, 14, 0.12);\n    transform: translateY(-2px);\n    border-color: var(--travelab-color-primary);\n  }\n\n  \/* Mobile-first responsive adjustments *\/\n  @media (max-width: 768px) {\n    .travelab-hero {\n      min-height: 55vh;\n      padding: 1.5rem 1rem;\n    }\n\n    .travelab-hero h1 {\n      font-size: clamp(1.6rem, 9vw, 2.5rem);\n    }\n\n    .travelab-hero p {\n      font-size: clamp(0.9rem, 4.2vw, 1.15rem);\n      padding: 0 0.5rem;\n    }\n\n    .travelab-tagline {\n      font-size: clamp(0.75rem, 3vw, 1rem);\n      padding: 0.4rem 1rem;\n      letter-spacing: 1px;\n    }\n\n    .travelab-benefit-row {\n      grid-template-columns: 1fr;\n      gap: 0.7rem;\n    }\n\n    .travelab-benefit-item {\n      padding: 0.65rem 1.1rem;\n      font-size: clamp(0.85rem, 3.5vw, 1rem);\n      min-height: 44px;\n    }\n\n    .travelab-hero-buttons {\n      flex-direction: column;\n      align-items: center;\n      gap: 0.9rem;\n    }\n\n    .travelab-btn {\n      width: 100%;\n      max-width: 320px;\n      min-width: auto;\n      padding: 1rem 1.5rem;\n    }\n  }\n\n  \/* Extra small screens (e.g., iPhone SE) *\/\n  @media (max-width: 480px) {\n    .travelab-hero {\n      min-height: 50vh;\n    }\n\n    .travelab-hero h1 {\n      font-size: clamp(1.5rem, 10vw, 2.3rem);\n      line-height: 1.2;\n    }\n\n    .travelab-hero p {\n      font-size: clamp(0.85rem, 4.5vw, 1.1rem);\n      line-height: 1.6;\n    }\n\n    .travelab-benefit-item {\n      font-size: clamp(0.8rem, 4vw, 0.95rem);\n      padding: 0.6rem 0.9rem;\n    }\n\n    .travelab-btn {\n      padding: 1.1rem 1.4rem;\n      font-size: clamp(0.95rem, 4vw, 1.05rem);\n    }\n  }\n<\/style>\n\n<div class=\"travelab-hero-section\">\n  <div class=\"travelab-hero\">\n    <div class=\"travelab-hero-content\">\n      <div class=\"travelab-tagline\">Your Journey, Simplified<\/div>\n      <h1>At Travelab, we make your travel simple.<\/h1>\n      <p>With over 20 years of experience, we handle everything for you: business flights, luxury hotels, private transfers, and loyalty programs.<\/p>\n\n      <div class=\"travelab-benefit-grid\">\n        <div class=\"travelab-benefit-row\">\n          <div class=\"travelab-benefit-item\">Tailor-made packages for individuals<\/div>\n          <div class=\"travelab-benefit-item\">Corporate travel solutions<\/div>\n          <div class=\"travelab-benefit-item\">University &#038; school group planning<\/div>\n        <\/div>\n        <div class=\"travelab-benefit-row\">\n          <div class=\"travelab-benefit-item\">Up to 25% off rentals<\/div>\n          <div class=\"travelab-benefit-item\">Visa support included<\/div>\n          <div class=\"travelab-benefit-item\">Flexible payment plans<\/div>\n        <\/div>\n      <\/div>\n    <\/div>\n  <\/div>\n<\/div>\n\n<script>\n  document.querySelectorAll('.travelab-btn').forEach(button => {\n    button.addEventListener('click', function(e) {\n      const href = this.getAttribute('href');\n      if (href && href.startsWith('#')) {\n        e.preventDefault();\n        const target = document.querySelector(href);\n        if (target) {\n          const offsetTop = target.offsetTop - 70;\n          window.scrollTo({\n            top: offsetTop,\n            behavior: 'smooth'\n          });\n        }\n      }\n    });\n  });\n<\/script>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-uagb-container uagb-block-418f884c alignfull uagb-is-root-container\"><div class=\"uagb-container-inner-blocks-wrap\">\n<style>\n  :root {\n    \/* Reuse Travelab Color Palette *\/\n    --travelab-color-primary: #85C20E;\n    --travelab-color-primary-dark: #2F4F1F;\n    --travelab-color-text: #333333;\n    --travelab-color-white: #FFFFFF;\n    --travelab-color-primary-tint-10: rgba(133, 194, 14, 0.1);\n  }\n\n  .travelab-cta-before-footer {\n    background: var(--travelab-color-white);\n    padding: 3rem 1.5rem;\n    text-align: center;\n    position: relative;\n    overflow: hidden;\n  }\n\n  .travelab-cta-container {\n    max-width: 800px;\n    margin: 0 auto;\n    position: relative;\n    z-index: 2;\n  }\n\n  .travelab-cta-tagline {\n    font-size: clamp(0.85rem, 2.5vw, 1.1rem);\n    font-weight: 600;\n    color: var(--travelab-color-primary);\n    margin-bottom: 1rem;\n    text-transform: uppercase;\n    letter-spacing: 1.5px;\n    background: var(--travelab-color-primary-tint-10);\n    display: inline-block;\n    padding: 0.4rem 1.2rem;\n    border-radius: 30px;\n  }\n\n  .travelab-cta-title {\n    font-size: clamp(1.75rem, 6vw, 2.75rem);\n    font-weight: 900;\n    line-height: 1.2;\n    color: var(--travelab-color-primary-dark);\n    margin-bottom: 1rem;\n  }\n\n  .travelab-cta-description {\n    font-size: clamp(1rem, 3.5vw, 1.25rem);\n    line-height: 1.6;\n    color: var(--travelab-color-text);\n    margin-bottom: 2rem;\n    max-width: 700px;\n    margin-left: auto;\n    margin-right: auto;\n  }\n\n  .travelab-cta-button {\n    display: inline-flex;\n    align-items: center;\n    justify-content: center;\n    padding: 0.95rem 2.2rem;\n    background: linear-gradient(135deg, var(--travelab-color-primary) 0%, var(--travelab-color-primary-dark) 100%);\n    color: white !important;\n    font-weight: 700;\n    font-size: clamp(0.95rem, 2.8vw, 1.15rem);\n    text-decoration: none;\n    border-radius: 50px;\n    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);\n    box-shadow: 0 4px 14px rgba(133, 194, 14, 0.3);\n    min-width: 200px;\n    border: none;\n    cursor: pointer;\n  }\n\n  .travelab-cta-button:hover {\n    transform: translateY(-4px) scale(1.03);\n    box-shadow: 0 8px 24px var(--travelab-color-primary-shadow-hover);\n    filter: brightness(1.05);\n  }\n\n  .travelab-cta-button:active {\n    transform: translateY(-2px) scale(1.01);\n    box-shadow: 0 4px 16px var(--travelab-color-primary-shadow-active);\n  }\n\n  \/* Ensure no conflicts *\/\n  .travelab-cta-button,\n  .travelab-cta-button:link,\n  .travelab-cta-button:visited,\n  .travelab-cta-button:focus {\n    color: white !important;\n    text-decoration: none !important;\n    outline: none !important;\n    border: none !important;\n  }\n\n  \/* Mobile Optimization *\/\n  @media (max-width: 768px) {\n    .travelab-cta-before-footer {\n      padding: 2.5rem 1.2rem;\n    }\n\n    .travelab-cta-title {\n      font-size: clamp(1.6rem, 7vw, 2.4rem);\n    }\n\n    .travelab-cta-description {\n      font-size: clamp(0.95rem, 4vw, 1.15rem);\n      padding: 0 0.5rem;\n    }\n\n    .travelab-cta-button {\n      width: 100%;\n      max-width: 320px;\n      padding: 1.1rem 1.5rem;\n    }\n  }\n\n  @media (max-width: 480px) {\n    .travelab-cta-before-footer {\n      padding: 2rem 1rem;\n    }\n\n    .travelab-cta-title {\n      font-size: clamp(1.5rem, 8vw, 2.2rem);\n    }\n\n    .travelab-cta-description {\n      font-size: clamp(0.9rem, 4.5vw, 1.1rem);\n      line-height: 1.65;\n    }\n  }\n<\/style>\n\n<div class=\"travelab-cta-before-footer\">\n  <div class=\"travelab-cta-container\">\n    <h2 class=\"travelab-cta-title\">Ready to Go Beyond?<\/h2>\n    <p class=\"travelab-cta-description\">Explore our exclusive services and customize your dream holiday today.<\/p>\n    <a href=\"\/index.php?page_id=75\" class=\"travelab-cta-button\">Plan Your Trip<\/a>\n  <\/div>\n<\/div>\n\n<script>\n  \/\/ Smooth scroll for the CTA button\n  document.querySelector('.travelab-cta-button')?.addEventListener('click', function(e) {\n    const href = this.getAttribute('href');\n    if (href && href.startsWith('#')) {\n      e.preventDefault();\n      const target = document.querySelector(href);\n      if (target) {\n        window.scrollTo({\n          top: target.offsetTop - 70,\n          behavior: 'smooth'\n        });\n      }\n    }\n  });\n<\/script>\n<\/div><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Your browser does not support the video tag. Your Trusted Partner in Travel, Since 2019. About Us Our Story and [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_eb_attr":"","_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"disabled","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"class_list":["post-46","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>About Us &#187;<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/travelab-consulting.com\/?page_id=46\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"About Us &#187;\" \/>\n<meta property=\"og:description\" content=\"Your browser does not support the video tag. Your Trusted Partner in Travel, Since 2019. About Us Our Story and [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/travelab-consulting.com\/?page_id=46\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-19T23:19:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/travelab-consulting.com\/wp-content\/uploads\/2025\/10\/Whisk_d4674f2254fbf28a3f843484b31fa556eg-3.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1408\" \/>\n\t<meta property=\"og:image:height\" content=\"736\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/travelab-consulting.com\/?page_id=46\",\"url\":\"https:\/\/travelab-consulting.com\/?page_id=46\",\"name\":\"About Us &#187;\",\"isPartOf\":{\"@id\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#website\"},\"datePublished\":\"2025-09-16T12:56:09+00:00\",\"dateModified\":\"2025-10-19T23:19:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/travelab-consulting.com\/?page_id=46#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/travelab-consulting.com\/?page_id=46\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/travelab-consulting.com\/?page_id=46#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/travelab-consulting.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"About Us\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#website\",\"url\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/\",\"name\":\"Travelab\",\"description\":\"Travelab \u2013 The Arab traveler\u2019s one-click gateway to the world: business flights, 5-star stays, visas &amp; 25 % off, all in one safe place.\",\"publisher\":{\"@id\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#organization\",\"name\":\"Travelab\",\"url\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/travelab-consulting.com\/wp-content\/uploads\/2025\/10\/cropped-WhatsApp_Image_2025-09-18_at_1.14.17_PM-Photoroom-removebg-preview.png\",\"contentUrl\":\"https:\/\/travelab-consulting.com\/wp-content\/uploads\/2025\/10\/cropped-WhatsApp_Image_2025-09-18_at_1.14.17_PM-Photoroom-removebg-preview.png\",\"width\":180,\"height\":150,\"caption\":\"Travelab\"},\"image\":{\"@id\":\"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"About Us &#187;","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/travelab-consulting.com\/?page_id=46","og_locale":"en_US","og_type":"article","og_title":"About Us &#187;","og_description":"Your browser does not support the video tag. Your Trusted Partner in Travel, Since 2019. About Us Our Story and [&hellip;]","og_url":"https:\/\/travelab-consulting.com\/?page_id=46","article_modified_time":"2025-10-19T23:19:32+00:00","og_image":[{"width":1408,"height":736,"url":"https:\/\/travelab-consulting.com\/wp-content\/uploads\/2025\/10\/Whisk_d4674f2254fbf28a3f843484b31fa556eg-3.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/travelab-consulting.com\/?page_id=46","url":"https:\/\/travelab-consulting.com\/?page_id=46","name":"About Us &#187;","isPartOf":{"@id":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#website"},"datePublished":"2025-09-16T12:56:09+00:00","dateModified":"2025-10-19T23:19:32+00:00","breadcrumb":{"@id":"https:\/\/travelab-consulting.com\/?page_id=46#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/travelab-consulting.com\/?page_id=46"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/travelab-consulting.com\/?page_id=46#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/travelab-consulting.com\/"},{"@type":"ListItem","position":2,"name":"About Us"}]},{"@type":"WebSite","@id":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#website","url":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/","name":"Travelab","description":"Travelab \u2013 The Arab traveler\u2019s one-click gateway to the world: business flights, 5-star stays, visas &amp; 25 % off, all in one safe place.","publisher":{"@id":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#organization","name":"Travelab","url":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#\/schema\/logo\/image\/","url":"https:\/\/travelab-consulting.com\/wp-content\/uploads\/2025\/10\/cropped-WhatsApp_Image_2025-09-18_at_1.14.17_PM-Photoroom-removebg-preview.png","contentUrl":"https:\/\/travelab-consulting.com\/wp-content\/uploads\/2025\/10\/cropped-WhatsApp_Image_2025-09-18_at_1.14.17_PM-Photoroom-removebg-preview.png","width":180,"height":150,"caption":"Travelab"},"image":{"@id":"https:\/\/blanchedalmond-echidna-870787.hostingersite.com\/#\/schema\/logo\/image\/"}}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"_nx_notification_thumb_100_100":false,"_nx_notification_thumb_200_200":false,"_nx_notification_thumb_300_300":false,"_nx_notification_thumb_400_400":false,"_nx_notification_thumb_500_500":false},"uagb_author_info":{"display_name":"admin","author_link":"https:\/\/travelab-consulting.com\/?author=1"},"uagb_comment_info":0,"uagb_excerpt":"Your browser does not support the video tag. Your Trusted Partner in Travel, Since 2019. About Us Our Story and [&hellip;]","_links":{"self":[{"href":"https:\/\/travelab-consulting.com\/index.php?rest_route=\/wp\/v2\/pages\/46","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/travelab-consulting.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/travelab-consulting.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/travelab-consulting.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/travelab-consulting.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=46"}],"version-history":[{"count":33,"href":"https:\/\/travelab-consulting.com\/index.php?rest_route=\/wp\/v2\/pages\/46\/revisions"}],"predecessor-version":[{"id":868,"href":"https:\/\/travelab-consulting.com\/index.php?rest_route=\/wp\/v2\/pages\/46\/revisions\/868"}],"wp:attachment":[{"href":"https:\/\/travelab-consulting.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=46"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}