/* =========================================
   Modern Specialists
   Responsive Welcome Page
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    min-height: 100%;
}

body {
    width: 100%;
    min-height: 100vh;

    margin: 0;

    font-family:
        Arial,
        Tahoma,
        sans-serif;

    background: #111c2d;

    color: #203B63;

    overflow-x: hidden;
}


/* =========================================
   الصفحة الرئيسية
========================================= */

.welcome-page {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;

    justify-content: center;
    align-items: center;

    padding: 40px;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #111c2d 0%,
            #1d2a3d 50%,
            #101b2c 100%
        );
}


/* =========================================
   الدوائر الخلفية
========================================= */

.background-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}


/* الدائرة الزرقاء */

.shape-one {
    width: 520px;
    height: 520px;

    top: -300px;
    right: -220px;

    background: #203B63;

    opacity: 0.65;
}


/* الدائرة الذهبية */

.shape-two {
    width: 450px;
    height: 450px;

    bottom: -280px;
    left: -220px;

    background: #F8BE2E;

    opacity: 0.55;
}


/* =========================================
   المربع الأبيض
========================================= */

.welcome-card {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 620px;

    min-height: 500px;

    padding: 55px 50px;

    margin: auto;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    background: #ffffff;

    border-radius: 26px;

    border: 1px solid #e5e7eb;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.35);
}


/* =========================================
   الشعار
========================================= */

.logo-container {
    width: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 18px;
}


.logo {
    display: block;

    width: auto;

    height: auto;

    max-width: 240px;

    max-height: 110px;

    object-fit: contain;
}


/* =========================================
   العنوان
========================================= */

.welcome-card h1 {
    margin: 8px 0 18px;

    color: #203B63;

    font-size:
        clamp(36px, 4vw, 54px);

    font-weight: 800;

    line-height: 1.1;

    letter-spacing: 3px;
}


/* =========================================
   النص العربي
========================================= */

.arabic-text {
    width: 100%;

    margin-bottom: 5px;

    color: #203B63;

    font-size:
        clamp(16px, 1.5vw, 19px);

    font-weight: 600;

    line-height: 1.8;
}


/* =========================================
   النص الإنجليزي
========================================= */

.english-text {
    width: 100%;

    margin-bottom: 35px;

    color: #667085;

    font-size:
        clamp(13px, 1.3vw, 16px);

    line-height: 1.7;

    direction: ltr;
}


/* =========================================
   أزرار اللغات
========================================= */

.language-buttons {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;
}


/* =========================================
   الزر
========================================= */

.language-button {
    width: 100%;

    min-height: 68px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px 20px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    border: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}


/* =========================================
   English
========================================= */

.english-button {
    background: #203B63;

    color: #ffffff;

    border: 2px solid #203B63;
}


/* =========================================
   العربية
========================================= */

.arabic-button {
    background: #F8BE2E;

    color: #203B63;

    border: 2px solid #F8BE2E;
}


/* =========================================
   Hover
========================================= */

.language-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.18);

    filter: brightness(1.04);
}


.language-button:active {
    transform: translateY(0);
}


.language-button:focus-visible {
    outline:
        3px solid #203B63;

    outline-offset: 4px;
}


/* =========================================
   العلم
========================================= */

.flag {
    font-size: 23px;

    line-height: 1;
}


/* =========================================
   اسم اللغة
========================================= */

.language-name {
    flex: 1;

    text-align: center;
}


/* =========================================
   السهم
========================================= */

.arrow {
    font-size: 18px;

    opacity: 0.85;
}


/* =========================================
   Footer
========================================= */

.footer {
    width: 100%;

    margin-top: 30px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 5px;

    color: #8a94a6;

    font-size: 12px;
}


/* =========================================
   الكمبيوتر الكبير
   1200px فأعلى
========================================= */

@media (min-width: 1200px) {

    .welcome-page {
        padding: 60px;
    }

    .welcome-card {
        max-width: 650px;

        min-height: 540px;

        padding:
            60px 55px;
    }

    .shape-one {
        width: 600px;
        height: 600px;

        top: -350px;
        right: -280px;
    }

    .shape-two {
        width: 520px;
        height: 520px;

        bottom: -330px;
        left: -270px;
    }
}


/* =========================================
   اللابتوب
   769px - 1199px
========================================= */

@media (min-width: 769px)
       and (max-width: 1199px) {

    .welcome-page {
        padding: 40px;
    }

    .welcome-card {
        max-width: 600px;

        min-height: 500px;

        padding:
            50px 45px;
    }
}


/* =========================================
   التابلت
   601px - 768px
========================================= */

@media (min-width: 601px)
       and (max-width: 768px) {

    .welcome-page {
        padding: 30px;
    }

    .welcome-card {
        max-width: 560px;

        min-height: 480px;

        padding:
            45px 35px;
    }

    .shape-one {
        width: 400px;
        height: 400px;

        top: -250px;
        right: -200px;
    }

    .shape-two {
        width: 350px;
        height: 350px;

        bottom: -230px;
        left: -180px;
    }
}


/* =========================================
   الجوال
========================================= */

@media (max-width: 600px) {

    .welcome-page {
        min-height: 100svh;

        padding: 20px 15px;
    }

    .welcome-card {
        width: 100%;

        max-width: 430px;

        min-height: auto;

        padding:
            40px 20px;

        border-radius: 20px;
    }

    .logo-container {
        margin-bottom: 12px;
    }

    .logo {
        max-width: 190px;

        max-height: 85px;
    }

    .welcome-card h1 {
        font-size: 36px;

        letter-spacing: 2px;

        margin-bottom: 15px;
    }

    .arabic-text {
        font-size: 16px;
    }

    .english-text {
        font-size: 14px;

        margin-bottom: 25px;
    }

    .language-buttons {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .language-button {
        min-height: 62px;

        font-size: 16px;
    }

    .footer {
        margin-top: 25px;
    }

    .shape-one {
        width: 280px;
        height: 280px;

        top: -160px;
        right: -140px;
    }

    .shape-two {
        width: 240px;
        height: 240px;

        bottom: -150px;
        left: -120px;
    }
}


/* =========================================
   جوالات صغيرة جداً
========================================= */

@media (max-width: 350px) {

    .welcome-page {
        padding: 15px 10px;
    }

    .welcome-card {
        padding:
            30px 15px;
    }

    .logo {
        max-width: 170px;

        max-height: 75px;
    }

    .welcome-card h1 {
        font-size: 30px;

        letter-spacing: 1px;
    }

    .arabic-text {
        font-size: 15px;
    }

    .english-text {
        font-size: 13px;
    }

    .language-button {
        min-height: 58px;

        font-size: 15px;
    }
}


/* =========================================
   الشاشات القصيرة
========================================= */

@media (max-height: 650px)
       and (min-width: 601px) {

    .welcome-page {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .welcome-card {
        min-height: auto;

        padding:
            30px 40px;
    }

    .logo {
        max-height: 75px;
    }

    .welcome-card h1 {
        margin-top: 5px;
        margin-bottom: 10px;
    }

    .english-text {
        margin-bottom: 20px;
    }

    .footer {
        margin-top: 20px;
    }
}


/* =========================================
   إمكانية الوصول
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        transition: none !important;

        animation: none !important;
    }
}