* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-size: var(--small-font-size);
    font-family: primary_font;
    color: var(--trinary-color);
}

@font-face {
    font-family: primary_font;
    src: url(../fonts/Comfortaa/Comfortaa-VariableFont_wght.ttf);
}

@font-face {
    font-family: secondary_font;
    src: url(../fonts/automata/AUTOMATA.ttf);
}

@font-face {
    font-family: primary_font_ar;
    src: url(../fonts/Cairo/Cairo-VariableFont_slnt\,wght.ttf);
}

:root {

    /* FONTS VARIABLES */

    --enormous-font-size: 6vw;

    --huge-font-size: 4vw;

    --big-font-size: 3vw;

    --medium-font-size: 2vw;

    --intermediate-font-size: 1.3vw;

    --small-font-size: .9vw;

    --tiny-font-size: .7vw;

    /* COLORS VARIABLES */

    --primary-color: #0e0e0e;

    --primary-color-shade: #191919;

    --secondary-color: #6847C7;

    --trinary-color: #F3F0FA;

    --secondary-color-shadow: #6747c777;

    /* VARS */

    --transition: all ease-in-out .5s;

}

@media (max-width:1443px) {

    :root {

        --huge-font-size: 5vw;

        --big-font-size: 4vw;

        --medium-font-size: 3vw;

        --intermediate-font-size: 2.5vw;

        --small-font-size: 1.2vw;

        --tiny-font-size: 1vw;
    }   

}

@media (max-width:1025px) {

    :root {

        --huge-font-size: 6vw;

        --big-font-size: 5vw;

        --medium-font-size: 4vw;

        --intermediate-font-size: 3.5vw;

        --small-font-size: 1.6vw;

        --tiny-font-size: 1.3vw;
    }   

}

@media (max-width:768px) {

    :root {

        --huge-font-size: 7vw;

        --big-font-size: 6vw;

        --medium-font-size: 5vw;

        --intermediate-font-size: 4.5vw;

        --small-font-size: 2.3vw;

        --tiny-font-size: 1.7vw;
    }   

}

@media (max-width:500px) {

    :root {

        --huge-font-size: 8vw;

        --big-font-size: 7vw;

        --medium-font-size: 6vw;

        --intermediate-font-size: 5.5vw;

        --small-font-size: 3vw;

        --tiny-font-size: 2.3vw;
    }   

}

p {
    line-height: clamp(2.5rem, 2.4vw + 1.6rem, 2rem);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary-color);
}

body.ar * {
    font-family: primary_font_ar !important;
}



/* ==================== */
/* ================ NAV */
/* ==================== */





nav {
    width: 100%;
    height: auto;
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
}

@media (max-width:1443px) {
    nav {
        padding: 20px 5%;
    }
}

@media (max-width:500px) {
    nav {
        align-items: center;
    }
}

nav.ar {
    direction: rtl;
}

nav.scrolled {
    background-color: #0e0e0e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.041);
}

nav > a.logo {
    width: auto;
    height: auto;
}

nav > a.logo > img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

@media (max-width:500px) {
    nav > a.logo > img {
        width: 150px;
    }
}

nav > div.btns {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-left: 5vw;
}

@media (max-width:1443px) {
    nav > div.btns {
        gap: 25px;
        margin-left: 3vw;
    }
}

@media (max-width:1025px) {
    nav > div.btns {
        display: none;
    }
}

nav > div.btns > a {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    white-space: nowrap;
}

nav > div.btns > a::after {
    content: '';
    width: 0%;
    height: 1px;
    background-color: var(--trinary-color);
    position: absolute;
    top: 100%;
    left: 0%;
    transition: var(--transition);
}

nav > div.btns > a:hover::after,
nav > div.btns > a.active::after {
    width: 100%;
}

nav > div.end {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
}

@media (max-width:1443px) {
    nav > div.end {
        gap: 15px;
    }
}

@media (max-width:1025px) {
    nav > div.end {
        display: none;
    }
}

nav > div.end > div.langs {
    position: relative;
}

nav > div.end > div.langs > button {
    width: auto;
    height: auto;
    padding: 15px 20px;
    border-radius: 26px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.082);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    cursor: pointer;
    position: relative;
}

nav > div.end > div.langs > button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}

nav > div.end > div.langs > ul.langs-list {
    width: auto;
    height: auto;
    border-radius: 26px;
    padding: 10px;
    background-color: var(--primary-color-shade);
    border: 1px solid rgba(255, 255, 255, 0.11);
    position: absolute;
    top: calc(100% + 10px);
    right: 0%;
    list-style: none;
    display: none;
}

nav > div.end > div.langs > ul.langs-list.active {
    display: block;
}

nav > div.end > div.langs > ul.langs-list > li {
    transition: var(--transition);
    border-radius: 16px;
    cursor: pointer;
}

nav > div.end > div.langs > ul.langs-list > li > a {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: block;
    text-decoration: none;
}

nav > div.end > div.langs > ul.langs-list > li:first-child {
    text-align: right;
}

nav > div.end > div.langs > ul.langs-list > li:hover {
    background-color: #6747c72c;
}

nav > div.end > a {
    width: auto;
    height: auto;
    padding: 15px 20px;
    background-color: var(--secondary-color);
    border-radius: 26px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

nav > div.end > a > svg {
    width: 30px;
    height: 30px;
}

nav > div.end > a:hover {
    transform: translateY(-3px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

nav > .mobile-section {
    display: none;
}

@media (max-width: 1025px) {
    nav > .mobile-section {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }
}

nav > .mobile-section > .langs {
    position: relative;
    z-index: 1200;
}

nav > .mobile-section > .langs > button {
    width: auto;
    min-height: 48px;
    padding: 0 18px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    font-family: inherit;
    cursor: pointer;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: var(--transition);
}

nav > .mobile-section > .langs > button:hover,
nav > .mobile-section > .langs > button:focus-visible {
    border-color: rgba(104, 71, 199, .7);
    box-shadow: 0 0 0 3px rgba(104, 71, 199, .12);
    outline: none;
}

nav > .mobile-section > .langs > .langs-list {
    width: 170px;
    height: auto;
    padding: 8px;
    background-color: rgba(8, 20, 22, .96);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    list-style: none;
    z-index: 10;
}

nav.ar > .mobile-section > .langs > .langs-list {
    right: auto;
    left: 0;
}

nav > .mobile-section > .langs > .langs-list[hidden] {
    display: none;
}

nav > .mobile-section > .langs > .langs-list > li > a {
    width: 100%;
    padding: 13px 15px;
    color: var(--trinary-color);
    display: block;
    border-radius: 13px;
    text-decoration: none;
    transition: var(--transition);
}

nav > .mobile-section > .langs > .langs-list > li > a:hover,
nav > .mobile-section > .langs > .langs-list > li > a[aria-current="true"] {
    background-color: rgba(104, 71, 199, .18);
}


/* ==================================== */
/* ================ MOBILE MENU BUTTON */
/* ==================================== */


nav > .mobile-section > .mobile-drawer-open {
    width: 52px;
    height: 52px;
    padding: 0;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

nav > .mobile-section > .mobile-drawer-open:hover,
nav > .mobile-section > .mobile-drawer-open:focus-visible {
    color: #ffffff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: rotate(-5deg);
    outline: none;
}

nav > .mobile-section > .mobile-drawer-open > svg {
    width: 34px;
    height: 34px;
    stroke: currentColor;
}


/* ============================== */
/* ================ MOBILE DRAWER */
/* ============================== */


nav > .mobile-section > .mobile-drawer {
    width: 100%;
    height: 100dvh;
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
    transition: visibility .45s ease;
}

nav > .mobile-section > .mobile-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-backdrop {
    width: 100%;
    height: 100%;
    padding: 0;
    background-color: rgba(0, 0, 0, .68);
    border: none;
    position: absolute;
    inset: 0;
    cursor: default;
    opacity: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: opacity .4s ease;
}

nav > .mobile-section > .mobile-drawer.open > .mobile-drawer-backdrop {
    opacity: 1;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel {
    width: min(92%, 560px);
    height: 100dvh;
    padding: 26px;
    color: var(--trinary-color);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .035), transparent 35%),
        var(--primary-color);
    border-left: 1px solid rgba(255, 255, 255, .09);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden auto;
    transform: translateX(105%);
    box-shadow: -35px 0 100px rgba(0, 0, 0, .48);
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

nav.ar > .mobile-section > .mobile-drawer > .mobile-drawer-panel {
    right: auto;
    left: 0;
    border-right: 1px solid rgba(255, 255, 255, .09);
    border-left: none;
    transform: translateX(-105%);
    box-shadow: 35px 0 100px rgba(0, 0, 0, .48);
}

nav > .mobile-section > .mobile-drawer.open > .mobile-drawer-panel,
nav.ar > .mobile-section > .mobile-drawer.open > .mobile-drawer-panel {
    transform: translateX(0);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-glow {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(104, 71, 199, .26), transparent 68%);
    border-radius: 50%;
    position: absolute;
    top: -150px;
    right: -130px;
    pointer-events: none;
}

nav.ar > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-glow {
    right: auto;
    left: -130px;
}


/* ===================================== */
/* ================ MOBILE DRAWER HEADER */
/* ===================================== */


nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-header {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-header > a > img {
    width: 175px;
    height: auto;
    display: block;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-header > button {
    width: 50px;
    height: 50px;
    padding: 0;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-header > button:hover {
    color: #ffffff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: rotate(90deg);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-header > button > svg {
    width: 22px;
    height: 22px;
}


/* =================================== */
/* ================ MOBILE DRAWER BODY */
/* =================================== */


nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    z-index: 2;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-label {
    color: rgba(243, 240, 250, .48);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a {
    width: 100%;
    min-height: 72px;
    padding: 0 8px;
    color: var(--trinary-color);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 30px;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: var(--transition);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a > span {
    color: rgba(243, 240, 250, .35);
    font-size: 11px;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a > strong {
    font-size: clamp(21px, 5vw, 30px);
    font-weight: 500;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a > svg {
    width: 20px;
    height: 20px;
    opacity: .38;
    transition: var(--transition);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a:hover,
nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a[aria-current="page"] {
    padding-inline-start: 18px;
    color: #ffffff;
    background: linear-gradient(90deg, rgba(104, 71, 199, .16), transparent);
}

nav.ar > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a:hover,
nav.ar > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a[aria-current="page"] {
    background: linear-gradient(-90deg, rgba(104, 71, 199, .16), transparent);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a:hover > svg,
nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a[aria-current="page"] > svg {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateX(4px);
}

nav.ar > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a > svg {
    transform: scaleX(-1);
}

nav.ar > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a:hover > svg,
nav.ar > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a[aria-current="page"] > svg {
    transform: scaleX(-1) translateX(4px);
}


/* ===================================== */
/* ================ MOBILE DRAWER FOOTER */
/* ===================================== */


nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-footer {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 2;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-footer > .mobile-drawer-cta {
    width: 100%;
    min-height: 62px;
    padding: 0 22px;
    color: #ffffff;
    background-color: var(--secondary-color);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    box-shadow: 0 18px 50px rgba(104, 71, 199, .2);
    transition: var(--transition);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-footer > .mobile-drawer-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 65px rgba(104, 71, 199, .32);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-footer > .mobile-drawer-cta > svg {
    width: 22px;
    height: 22px;
}

nav.ar > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-footer > .mobile-drawer-cta > svg {
    transform: scaleX(-1);
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-footer > .mobile-drawer-contact {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    color: rgba(243, 240, 250, .42);
    font-size: 11px;
}

nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-footer > .mobile-drawer-contact > a {
    color: rgba(243, 240, 250, .7);
    text-decoration: none;
}

@media (max-width: 500px) {
    nav > .mobile-section > .langs > button {
        min-height: 44px;
        padding: 0 14px;
        font-size: 12px;
    }

    nav > .mobile-section > .mobile-drawer-open {
        width: 46px;
        height: 46px;
    }

    nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel {
        width: 100%;
        padding: 20px;
    }

    nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-header > a > img {
        width: 145px;
    }

    nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-body > .mobile-drawer-links > a {
        min-height: 64px;
    }

    nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel > .mobile-drawer-footer > .mobile-drawer-contact {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    nav > .mobile-section > .mobile-drawer,
    nav > .mobile-section > .mobile-drawer > .mobile-drawer-backdrop,
    nav > .mobile-section > .mobile-drawer > .mobile-drawer-panel {
        transition: none;
    }
}





/* ========================= */
/* ================ FLOATERS */
/* ========================= */





.floaters {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    position: fixed;
    bottom: 10%;
    right: 5%;
    z-index: 99;
}

.floaters > .whatspp-btn {
    width: 60px;
    height: 60px;
    position: relative;
    transition: var(--transition);
}

.floaters > .whatspp-btn:hover {
    transform: translateY(-5px);
}

.floaters > .whatspp-btn > svg {
    width: 100%;
    height: 100%;
}

.floaters > .whatspp-btn > svg > .st0 {
    fill: #ffffff !important;
}

.floaters > .ai-chat-btn {
    width: 82px;
    height: 82px;
    padding: 0;
    position: relative;
    isolation: isolate;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    animation: ai-chat-float 4.5s ease-in-out infinite;
    transition: var(--transition);


    display: none;
}

.floaters > .ai-chat-btn::before {
    content: "";
    width: 42px;
    height: 24px;
    position: absolute;
    left: -2px;
    bottom: 8px;
    z-index: 0;
    border-radius: 64% 36% 57% 43% / 42% 66% 34% 58%;
    background-color: rgba(42, 230, 239, .8);
    filter: blur(12px);
    opacity: .7;
    pointer-events: none;
    animation: ai-chat-cyan-cloud 4.8s ease-in-out infinite alternate;
}

.floaters > .ai-chat-btn::after {
    content: "";
    width: 36px;
    height: 27px;
    position: absolute;
    top: 3px;
    right: 1px;
    z-index: 0;
    border-radius: 38% 62% 43% 57% / 65% 36% 64% 35%;
    background-color: rgba(119, 70, 255, .75);
    filter: blur(14px);
    opacity: .65;
    pointer-events: none;
    animation: ai-chat-purple-cloud 5.7s ease-in-out infinite alternate;
}

.floaters > .ai-chat-btn > .ai-aura {
    position: absolute;
    inset: -10px;
    z-index: 0;
    border-radius: 47% 53% 38% 62% / 61% 35% 65% 39%;
    background:
        radial-gradient(
            ellipse at 14% 68%,
            rgba(49, 240, 242, .95) 0%,
            rgba(49, 240, 242, .5) 8%,
            rgba(49, 240, 242, .16) 18%,
            transparent 34%
        ),
        radial-gradient(
            ellipse at 31% 91%,
            rgba(31, 180, 225, .7) 0%,
            rgba(31, 180, 225, .2) 14%,
            transparent 32%
        ),
        radial-gradient(
            ellipse at 68% 8%,
            rgba(127, 75, 255, .9) 0%,
            rgba(127, 75, 255, .4) 10%,
            rgba(127, 75, 255, .12) 21%,
            transparent 38%
        ),
        radial-gradient(
            ellipse at 91% 41%,
            rgba(75, 105, 255, .55) 0%,
            rgba(75, 105, 255, .15) 13%,
            transparent 29%
        ),
        radial-gradient(
            ellipse at 70% 88%,
            rgba(43, 223, 235, .45) 0%,
            transparent 25%
        );
    filter: blur(7px);
    opacity: .85;
    pointer-events: none;
    animation: ai-chat-aura-drift 7.2s ease-in-out infinite alternate;
}

.floaters > .ai-chat-btn > .ai-ring {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 58% 42% 64% 36% / 39% 62% 38% 61%;
    background:
        radial-gradient(
            ellipse at 12% 62%,
            rgba(64, 244, 242, 1) 0%,
            rgba(64, 244, 242, .75) 5%,
            rgba(64, 244, 242, .2) 15%,
            transparent 27%
        ),
        radial-gradient(
            ellipse at 25% 84%,
            rgba(28, 184, 227, .85) 0%,
            rgba(28, 184, 227, .25) 11%,
            transparent 25%
        ),
        radial-gradient(
            ellipse at 53% 96%,
            rgba(48, 221, 231, .5) 0%,
            transparent 19%
        ),
        radial-gradient(
            ellipse at 71% 6%,
            rgba(142, 88, 255, .95) 0%,
            rgba(142, 88, 255, .55) 6%,
            rgba(142, 88, 255, .16) 17%,
            transparent 29%
        ),
        radial-gradient(
            ellipse at 91% 29%,
            rgba(88, 74, 241, .7) 0%,
            rgba(88, 74, 241, .18) 11%,
            transparent 25%
        ),
        radial-gradient(
            ellipse at 88% 71%,
            rgba(43, 171, 230, .5) 0%,
            transparent 20%
        );
    filter:
        blur(2px)
        drop-shadow(0 0 5px rgba(45, 230, 237, .55))
        drop-shadow(0 0 7px rgba(120, 70, 255, .5));
    opacity: .9;
    pointer-events: none;
    animation: ai-chat-fragments 6.3s ease-in-out infinite alternate;
}

.floaters > .ai-chat-btn > .ai-ring::before {
    content: "";
    width: 25px;
    height: 12px;
    position: absolute;
    top: 8px;
    left: 8px;
    border-radius: 65% 35% 48% 52%;
    background:
        linear-gradient(
            115deg,
            transparent,
            rgba(163, 114, 255, .9),
            transparent
        );
    filter: blur(3px);
    opacity: .75;
    transform: rotate(-23deg);
    animation: ai-chat-fragment-one 3.8s ease-in-out infinite alternate;
}

.floaters > .ai-chat-btn > .ai-ring::after {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    right: 4px;
    bottom: 19px;
    border-radius: 57% 43% 68% 32%;
    background-color: rgba(43, 224, 236, .8);
    box-shadow:
        -61px -18px 5px rgba(143, 90, 255, .75),
        -50px 29px 6px rgba(39, 231, 238, .8),
        -22px -51px 5px rgba(119, 73, 255, .55),
        5px -27px 7px rgba(39, 158, 225, .5);
    filter: blur(2px);
    opacity: .8;
    animation: ai-chat-particles 4.6s ease-in-out infinite alternate;
}

.floaters > .ai-chat-btn > .ai-core {
    width: 58px;
    height: 58px;
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(27, 31, 65, .95) 0%,
            rgba(18, 23, 51, .84) 42%,
            rgba(14, 18, 43, .48) 60%,
            rgba(10, 14, 35, .12) 72%,
            transparent 82%
        );
    box-shadow: none;
    transition: var(--transition);
    animation: ai-chat-core-breathe 3.8s ease-in-out infinite;
}

.floaters > .ai-chat-btn > .ai-core > svg {
    width: 25px;
    height: 25px;
    fill: var(--trinary-color);
    filter:
        drop-shadow(0 0 4px rgba(243, 240, 250, .4))
        drop-shadow(0 0 8px rgba(99, 81, 210, .25));
    transition: var(--transition);
    animation: ai-chat-icon-glow 3s ease-in-out infinite;
}

.floaters > .ai-chat-btn:hover {
    transform: translateY(-6px) scale(1.06);
}

.floaters > .ai-chat-btn:hover::before,
.floaters > .ai-chat-btn:hover::after {
    filter: blur(17px);
    opacity: .95;
}

.floaters > .ai-chat-btn:hover > .ai-aura {
    filter: blur(10px);
    opacity: 1;
}

.floaters > .ai-chat-btn:hover > .ai-ring {
    filter:
        blur(2.5px)
        drop-shadow(0 0 8px rgba(45, 230, 237, .75))
        drop-shadow(0 0 11px rgba(120, 70, 255, .7));
}

.floaters > .ai-chat-btn:hover > .ai-core > svg {
    transform: scale(1.12);
}

.floaters > .ai-chat-btn:focus-visible {
    outline: 2px solid rgba(49, 231, 237, .85);
    outline-offset: 7px;
}

@keyframes ai-chat-float {

    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -5px;
    }

}

@keyframes ai-chat-cyan-cloud {

    0% {
        transform: translate(-4px, 3px) rotate(-18deg) scale(.8);
        opacity: .4;
    }

    50% {
        transform: translate(4px, -1px) rotate(7deg) scale(1.2);
        opacity: .9;
    }

    100% {
        transform: translate(-1px, -4px) rotate(-7deg) scale(.95);
        opacity: .65;
    }

}

@keyframes ai-chat-purple-cloud {

    0% {
        transform: translate(3px, -2px) rotate(12deg) scale(.85);
        opacity: .4;
    }

    50% {
        transform: translate(-4px, 4px) rotate(-9deg) scale(1.18);
        opacity: .85;
    }

    100% {
        transform: translate(2px, 2px) rotate(5deg) scale(1);
        opacity: .6;
    }

}

@keyframes ai-chat-aura-drift {

    0% {
        transform: rotate(-5deg) scale(.9) translate(-2px, 2px);
        border-radius: 47% 53% 38% 62% / 61% 35% 65% 39%;
        opacity: .58;
    }

    35% {
        transform: rotate(8deg) scale(1.12) translate(3px, -3px);
        border-radius: 66% 34% 51% 49% / 38% 67% 33% 62%;
        opacity: .95;
    }

    70% {
        transform: rotate(-12deg) scale(.97) translate(-4px, -1px);
        border-radius: 35% 65% 67% 33% / 58% 31% 69% 42%;
        opacity: .68;
    }

    100% {
        transform: rotate(4deg) scale(1.07) translate(2px, 3px);
        border-radius: 57% 43% 32% 68% / 45% 63% 37% 55%;
        opacity: .82;
    }

}

@keyframes ai-chat-fragments {

    0% {
        transform: rotate(-4deg) scale(.92);
        border-radius: 58% 42% 64% 36% / 39% 62% 38% 61%;
    }

    33% {
        transform: rotate(7deg) scale(1.08);
        border-radius: 37% 63% 46% 54% / 68% 35% 65% 32%;
    }

    66% {
        transform: rotate(-10deg) scale(.98);
        border-radius: 69% 31% 56% 44% / 42% 71% 29% 58%;
    }

    100% {
        transform: rotate(5deg) scale(1.04);
        border-radius: 45% 55% 34% 66% / 61% 41% 59% 39%;
    }

}

@keyframes ai-chat-fragment-one {

    0% {
        transform: translate(-3px, 2px) rotate(-28deg) scale(.8);
        opacity: .35;
    }

    100% {
        transform: translate(7px, -5px) rotate(-7deg) scale(1.25);
        opacity: .9;
    }

}

@keyframes ai-chat-particles {

    0% {
        transform: translate(-2px, 3px) scale(.75);
        opacity: .4;
    }

    50% {
        transform: translate(4px, -4px) scale(1.15);
        opacity: .9;
    }

    100% {
        transform: translate(-4px, -1px) scale(.9);
        opacity: .6;
    }

}

@keyframes ai-chat-core-breathe {

    0%,
    100% {
        transform: scale(.96);
    }

    50% {
        transform: scale(1.04);
    }

}

@keyframes ai-chat-icon-glow {

    0%,
    100% {
        filter:
            drop-shadow(0 0 3px rgba(243, 240, 250, .3))
            drop-shadow(0 0 5px rgba(104, 71, 199, .2));
    }

    50% {
        filter:
            drop-shadow(0 0 6px rgba(243, 240, 250, .65))
            drop-shadow(0 0 10px rgba(49, 231, 237, .5));
    }

}

@media screen and (max-width: 600px) {

    .floaters > .ai-chat-btn {
        width: 70px;
        height: 70px;
    }

    .floaters > .ai-chat-btn > .ai-core {
        width: 50px;
        height: 50px;
    }

    .floaters > .ai-chat-btn > .ai-core > svg {
        width: 22px;
        height: 22px;
    }

}

@media (prefers-reduced-motion: reduce) {

    .floaters > .ai-chat-btn,
    .floaters > .ai-chat-btn::before,
    .floaters > .ai-chat-btn::after,
    .floaters > .ai-chat-btn > .ai-aura,
    .floaters > .ai-chat-btn > .ai-ring,
    .floaters > .ai-chat-btn > .ai-ring::before,
    .floaters > .ai-chat-btn > .ai-ring::after,
    .floaters > .ai-chat-btn > .ai-core,
    .floaters > .ai-chat-btn > .ai-core > svg {
        animation: none;
    }

}





/* ======================= */
/* ================ FOOTER */
/* ======================= */





footer {
    width: 100%;
    height: auto;
    padding: 5% 5% 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 100% 50%,
            var(--secondary-color-shadow),
            transparent 18%
        ),
        radial-gradient(
            circle at 5% 100%,
            var(--secondary-color-shadow),
            transparent 16%
        ),
        #0e0e0e;
}

footer.ar {
    direction: rtl;
}

footer > .socials {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

footer > .socials > a {
    width: 60px;
    height: 60px;
    padding: 15px;
    color: var(--trinary-color);
    background-color: rgba(255, 255, 255, .096);
    text-decoration: none;
    border-radius: 50%;
    transition: var(--transition);
}

footer > .socials > a:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}

footer > .socials > a > svg {
    width: 100%;
    height: 100%;
    color: currentColor;
    opacity: .7;
    transition: var(--transition);
}

footer > .socials > a:hover > svg {
    opacity: .9;
}

footer > .lists {
    width: 70%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    padding-top: 50px;
    position: relative;
    z-index: 2;
}

@media (max-width:1443px) {
    footer > .lists {
        width: 100%;
    }
}

@media (max-width:500px) {
    footer > .lists {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

footer > .lists::before {
    content: '';
    width: 20%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.178);
    position: absolute;
    top: 0%;
    left: 40%;
}

footer > .lists > .list {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 13px;
}

footer > .lists > .list > strong {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
}

@media (max-width:1025px) {
    footer > .lists > .list > strong {
        margin-bottom: 10px;
    }
}

footer > .lists > .list > a {
    font-size: var(--tiny-font-size);
    text-decoration: none;
    opacity: .8;
    transition: var(--transition);
}

footer > .lists > .list > a:hover {
    opacity: 1;
}

footer > .end {
    width: 70%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 2;
}

@media (max-width:1443px) {
    footer > .end {
        width: 100%;
    }
}

@media (max-width:1025px) {
    footer > .end {
        flex-direction: column;
        gap: 75px;
    }
}

@media (max-width:768px) {
    footer > .end {
        gap: 50px;
    }
}

footer > .end > .dets,
footer > .end > .news-letter {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
}

@media (max-width:1025px) {
    footer > .end > .dets,
    footer > .end > .news-letter {
        width: 100%;
    }
}

footer > .end > .dets > img {
    width: 400px;
    height: auto;
    object-fit: cover;
}

@media (max-width:500px) {
    footer > .end > .dets > img {
        width: 300px;
    }
}

footer > .end > .dets > p,
footer > .end > .news-letter > p {
    width: 80%;
    opacity: .9;
}

footer > .end > .news-letter > strong {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    font-size: var(--intermediate-font-size);
}

@media (max-width:1025px) {
    footer > .end > .news-letter > strong {
        margin-bottom: 10px;
    }
}

@media (max-width:500px) {
    footer > .end > .news-letter > strong {
        margin-bottom: 0px;
    }
}

footer > .end > .news-letter > form {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

footer > .end > .news-letter > form > input {
    width: 80%;
    height: auto;
    padding: 20px;
    background-color: #6747c73f;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.082);
    outline: none;
    transition: var(--transition);
    color: var(--trinary-color);
}

footer > .end > .news-letter > form > input::placeholder {
    color: var(--trinary-color);
}

footer > .end > .news-letter > form > input:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px var(--secondary-color-shadow);
}

footer > .end > .news-letter > form > button {
    width: 60px;
    height: 60px;
    padding: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.068);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border: 1px solid rgba(255, 255, 255, 0.103);
    cursor: pointer;
    transition: var(--transition);
}

footer > .end > .news-letter > form > button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 20px 50px 0px rgba(255, 255, 255, 0.062);
}

footer > .end > .news-letter > form > button > svg {
    width: 100%;
    height: 100%;
    fill: var(--trinary-color);
}

footer .newsletter-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

footer .newsletter-submit-button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

footer .newsletter-submit-icon {
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.25s ease;
}

footer .newsletter-submit-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 19px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

footer .newsletter-loading-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

footer .newsletter-submit-button.is-loading {
    cursor: wait;
    pointer-events: none;
}

footer .newsletter-submit-button.is-loading
.newsletter-submit-icon {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.75);
}

footer .newsletter-submit-button.is-loading
.newsletter-submit-spinner {
    opacity: 1;
    visibility: visible;
    animation: newsletter-submit-spin 0.75s linear infinite;
}

footer .newsletter-submit-button:disabled {
    opacity: 1;
}

@keyframes newsletter-submit-spin {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}

@media (prefers-reduced-motion: reduce) {

    footer .newsletter-submit-icon {
        transition: none;
    }

    footer .newsletter-submit-button.is-loading
    .newsletter-submit-spinner {
        animation-duration: 1.4s;
    }

}

footer > .copyrights {
    width: 100%;
    height: auto;
    padding: 50px 5%;
    position: relative;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

footer > .copyrights::before {
    content: '';
    width: 70%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.178);
    position: absolute;
    top: 0%;
    left: 15%;
}

footer > .copyrights p {
    width: 100%;
    opacity: .9;
    text-align: center;
}

footer > .footer-moon-art {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

footer > .footer-moon-art {
    width: 19vw;
    height: 19vw;
    top: 38%;
    left: -4vw;
    opacity: .25;
    animation: footer-moon-art-float 10s ease-in-out infinite;
}

footer > .footer-moon-art > .footer-moon-halo {
    position: absolute;
    inset: 3%;
    border: .08vw solid var(--secondary-color-shadow);
    border-radius: 50%;
    box-shadow:
        0 0 2vw var(--secondary-color-shadow),
        inset 0 0 2vw var(--secondary-color-shadow);
    animation: footer-moon-halo-pulse 5s ease-in-out infinite;
}

footer > .footer-moon-art > .footer-moon-body {
    position: absolute;
    inset: 18%;
    overflow: hidden;
    border: .1vw solid var(--secondary-color);
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 35% 30%,
            var(--trinary-color),
            var(--secondary-color) 4%,
            transparent 7%
        ),
        radial-gradient(
            circle at 30% 70%,
            var(--secondary-color-shadow),
            transparent 11%
        ),
        radial-gradient(
            circle at 70% 55%,
            var(--secondary-color-shadow),
            transparent 8%
        ),
        rgba(255, 255, 255, .015);
    box-shadow:
        0 0 2vw var(--secondary-color-shadow),
        inset -1.5vw -1vw 2.5vw var(--secondary-color-shadow);
    animation: footer-moon-body-glow 5s ease-in-out infinite;
}

footer > .footer-moon-art > .footer-moon-body::before {
    content: "";
    width: 88%;
    height: 88%;
    position: absolute;
    top: -7%;
    left: 42%;
    border: .08vw solid var(--secondary-color);
    border-radius: 50%;
    opacity: .5;
    background-color: #0e0e0e;
}

footer > .footer-moon-art > .footer-moon-body::after {
    content: "";
    width: 12%;
    height: 12%;
    position: absolute;
    right: 17%;
    bottom: 20%;
    border: .08vw solid var(--secondary-color);
    border-radius: 50%;
    opacity: .5;
}

footer > .footer-moon-art > .footer-moon-orbit {
    position: absolute;
    inset: 2%;
    border: .08vw solid var(--secondary-color);
    border-radius: 50%;
    transform: rotate(-25deg) scaleY(.45);
    animation: footer-moon-orbit-rotate 16s linear infinite;
}

footer > .footer-moon-art > .footer-moon-orbit > i {
    width: 5%;
    height: 5%;
    position: absolute;
    top: 11%;
    left: 15%;
    border-radius: 50%;
    background-color: var(--trinary-color);
    box-shadow:
        0 0 .8vw var(--trinary-color),
        0 0 1.5vw var(--secondary-color);
}

footer > .footer-moon-art > .footer-moon-star {
    width: 2vw;
    height: .08vw;
    position: absolute;
    top: 20%;
    right: -3%;
    opacity: .6;
    background-color: var(--secondary-color);
    box-shadow: 0 0 .8vw var(--secondary-color);
    animation: footer-moon-star-pulse 3s ease-in-out infinite;
}

footer > .footer-moon-art > .footer-moon-star::before {
    content: "";
    width: .08vw;
    height: 2vw;
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--secondary-color);
    transform: translate(-50%, -50%);
}

@keyframes footer-moon-art-float {

    0%,
    100% {
        transform: translate(0, 0) rotate(-3deg);
    }

    50% {
        transform: translate(1vw, -1.5vw) rotate(3deg);
    }

}

@keyframes footer-moon-halo-pulse {

    0%,
    100% {
        opacity: .2;
        transform: scale(.9);
    }

    50% {
        opacity: .6;
        transform: scale(1.05);
    }

}

@keyframes footer-moon-body-glow {

    0%,
    100% {
        box-shadow:
            0 0 1vw var(--secondary-color-shadow),
            inset -1.5vw -1vw 2vw var(--secondary-color-shadow);
    }

    50% {
        box-shadow:
            0 0 3vw var(--secondary-color),
            inset -1.5vw -1vw 3vw var(--secondary-color-shadow);
    }

}

@keyframes footer-moon-orbit-rotate {

    from {
        transform: rotate(-25deg) scaleY(.45);
    }

    to {
        transform: rotate(335deg) scaleY(.45);
    }

}

@keyframes footer-moon-star-pulse {

    0%,
    100% {
        opacity: .2;
        transform: scale(.7);
    }

    50% {
        opacity: .8;
        transform: scale(1.1);
    }

}

@media (max-width: 768px) {

    /* MOON */

    footer > .footer-moon-art {
        width: 45vw;
        height: 45vw;
        top: 35%;
        left: -20vw;
        opacity: .15;
    }

    footer > .footer-moon-art > .footer-moon-body,
    footer > .footer-moon-art > .footer-moon-orbit {
        border-width: .2vw;
    }

    footer > .footer-moon-art > .footer-moon-star {
        width: 4vw;
        height: .2vw;
    }

    footer > .footer-moon-art > .footer-moon-star::before {
        width: .2vw;
        height: 4vw;
    }

}

@media (prefers-reduced-motion: reduce) {

    footer > .footer-moon-art,
    footer > .footer-moon-art *,
    footer > .footer-moon-art *::before,
    footer > .footer-moon-art *::after {
        animation: none !important;
    }

}



/* ========================== */
/* ================ PARTICLES */
/* ========================== */



.intro-atmosphere {
    position: fixed;
    inset: 0;
    z-index: 0;

    overflow: hidden;
    pointer-events: none;
}

.intro-atmosphere .intro-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.intro-atmosphere .particle {
    width: var(--size);
    height: var(--size);

    position: absolute;
    left: var(--x);
    top: var(--y);

    display: block;
    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 calc(var(--size) * 2) currentColor,
        0 0 calc(var(--size) * 5) currentColor;

    opacity: 0;

    animation:
        randomParticleMovement var(--duration) ease-in-out var(--delay) infinite alternate,
        randomParticlePulse calc(var(--duration) * 0.55) ease-in-out var(--delay) infinite;
}

.intro-atmosphere .particle.purple {
    color: #9a78ff;
}

.intro-atmosphere .particle.blue {
    color: #5c91ff;
}

.intro-atmosphere .particle.pink {
    color: #ff68ce;
}

.intro-atmosphere .particle.white {
    color: #f3f0fa;
}

@keyframes randomParticleMovement {
    0% {
        transform:
            translate3d(0, 0, 0)
            scale(0.7);
    }

    35% {
        transform:
            translate3d(
                calc(var(--move-x) * -0.5),
                calc(var(--move-y) * 0.4),
                0
            )
            scale(1);
    }

    70% {
        transform:
            translate3d(
                var(--move-x),
                var(--move-y),
                0
            )
            scale(1.25);
    }

    100% {
        transform:
            translate3d(
                calc(var(--move-x) * -0.25),
                calc(var(--move-y) * -0.55),
                0
            )
            scale(0.8);
    }
}

@keyframes randomParticlePulse {
    0%,
    100% {
        opacity: 0.08;
    }

    35% {
        opacity: 0.75;
    }

    50% {
        opacity: 0.2;
    }

    75% {
        opacity: 0.9;
    }
}

.intro-atmosphere .particle[style*="--size:5px"],
.intro-atmosphere .particle[style*="--size:6px"] {
    filter: blur(0.5px);
    opacity: 0.5;
}

@media (max-width: 768px) {

    .intro-atmosphere .particle:nth-child(3n) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .intro-atmosphere .particle {
        animation: none;
        opacity: 0.4;
    }
}

@media (prefers-reduced-motion: reduce) {

    .intro-atmosphere .intro-grid,
    .intro-atmosphere .particle {
        animation: none !important;
    }
}



































































