@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700&display=swap');

:root {
    --primary-color: #2c3e50;
    --accent-color: #4CAF50;
    --text-color: #333;
    --bg-color: #f9f9f9;
}

body {
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    padding: 0;
    direction: ltr;
    /* Default LTR */
    background-color: var(--bg-color);
    color: var(--text-color);
}

body.lang-ar {
    direction: rtl;
    text-align: right;
}

body.lang-en {
    direction: ltr;
    text-align: left;
}

.flynas-hero-section {
    background: url("../medias/hero.15802139bfb5.png");
    background-position: center;
    color: white;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    height: 350px;
}

.widget-wrapper {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    margin: -100px auto 0px;
    position: relative;
    z-index: 10;
}