* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body {
    background-image: linear-gradient( 180deg, rgba(236, 239, 241, 1) 37%, rgba(227, 242, 253, 1) 73% );
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 100vh;
}

.header {
    position: relative;
}

.menu {
    width: 95%;
    margin: 15px auto;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--largeRadius);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    position: fixed;
    z-index: 100;
    top: 0px;
    right: 0px;
    left: 0px;
}

.menu__left-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu__logo {
    width: 100px;
    height: auto;
}

.menu__dashboard-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 4px;
    text-decoration: none;
    padding: 10px 8px;
    border-radius: var(--mediumRadius);
    color: var(--whiteSmoke);
    font-size: 17px;
    background-color: var(--blue);
    transition: all 0.4s;
}

    .menu__dashboard-btn:hover {
        background-color: var(--lightBlue);
        color: var(--whiteSmoke);
    }

.menu__right-side {
    margin: 0px 15px;
    position: relative;
}

    .menu__right-side svg,
    .menu-mobile__middle-side svg {
        width: 24px;
        height: 24px;
    }

.menu__items {
    display: flex;
    padding-top: 10px;
    margin-left: 5px;
}

.menu__current-page {
    text-decoration: none;
    color: var(--black);
}

    .menu__current-page::after {
        content: "";
        width: 100%;
        height: 2px;
        background-color: var(--blue);
        display: block;
        margin-top: 5px;
    }

.menu__links {
    text-decoration: none;
    color: var(--black);
}

    .menu__links::after {
        content: "";
        width: 0%;
        height: 2px;
        background-color: var(--blue);
        display: block;
        margin-top: 5px;
        transition: all 0.4s 0.1s;
    }

    .menu__links:hover::after {
        width: 100%;
    }

.menu-mobile {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s;
}

.menu-mobile__top {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-mobile__left-side {
    margin: 0px 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-mobile__menu-up-line,
.menu-mobile__menu-middle-line,
.menu-mobile__menu-down-line {
    width: 40px;
    height: 2px;
    background-color: var(--black);
    margin: 5px 0px;
    border-radius: var(--largeRadius);
    transition: all 0.4s;
}

.menu-mobile--menu-up-line-trans {
    transform: translate(0px, 6px) rotate(45deg);
}

.menu-mobile--menu-down-line-trans {
    transform: translate(0px, -6px) rotate(-45deg);
}

.menu-mobile__right-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-mobile__bottom {
    margin: 0px 15px;
    display: flex;
    flex-direction: column;
}

/* ------------------ */
/*   MOBILE MENU FIX  */
/* ------------------ */

.menu-mobile__links {
    text-decoration: none;
    color: var(--black);
    margin: 15px 0;
    font-size: 20px;
    position: relative;
    display: inline-block;
    width: fit-content;
    max-width: fit-content;
    padding-left: 0;
}

    .menu-mobile__links.menu__current-page::after {
        display: none !important;
    }

    .menu-mobile__links::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        height: 2px;
        width: 0; /* شروع */
        background-color: var(--blue);
        transition: width .25s ease;
    }

    .menu-mobile__links.menu__current-page::after {
        width: 100% !important;
        display: block !important;
    }



.footer {
    margin-bottom: 115px;
}

.footer__fov {
    border-bottom: 5px solid transparent;
    border-image: linear-gradient( 90deg, rgba(227, 242, 253, 1) 0%, rgba(71, 167, 243, 1) 35%, rgba(227, 242, 253, 1) 100% ) 1 round;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer__fov-logo {
    width: 150px;
    margin-bottom: 15px;
}

.footer__fov-text {
    font-size: 20px;
    line-height: 1.4;
}

.footer__section-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.footer__section__title {
    font-weight: bold;
    font-size: 18px;
}

.footer__section__link {
    text-decoration: none;
    line-height: 1.4;
    color: var(--black);
    width: fit-content;
}

    .footer__section__link:hover {
        color: var(--graySmoke);
    }

.trial {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    background-color: var(--orange);
    z-index: 99999;
    bottom: 0;
    border-top-left-radius: var(--largeRadius);
    border-top-right-radius: var(--largeRadius);
}

.trial__link {
    padding: 5px;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    color: var(--graySmoke);
    font-weight: bold;
}
