@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v20-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}

html {
    scroll-behavior: smooth;
}

body {
    font-feature-settings: "liga", "kern";
    background-color: #f3faf7;
}

details summary::-webkit-details-marker {
    display: none;
}

details[open] {
    border-color: rgba(13, 148, 136, 0.35);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.08);
}

details summary {
    list-style: none;
}

.no-scroll {
    overflow: hidden;
}

.accent-gradient {
    background: linear-gradient(135deg, #D9F5F1 0%, #0D9488 100%);
}

.accent-text-shadow {
    text-shadow: 0 1px 3px rgba(13, 148, 136, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -10px, 0);
    }

    70% {
        transform: translate3d(0, -5px, 0);
    }

    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(26, 174, 159, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(26, 174, 159, 0.8), 0 0 30px rgba(26, 174, 159, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Scroll-triggered animation classes */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.scroll-animate.animate-visible {
    opacity: 1;
}

.scroll-fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-fadeInUp.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fadeInDown {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease-out;
}

.scroll-fadeInDown.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fadeInLeft {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.scroll-fadeInLeft.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-fadeInRight {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease-out;
}

.scroll-fadeInRight.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-zoomIn {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.scroll-zoomIn.animate-visible {
    opacity: 1;
    transform: scale(1);
}

.scroll-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-stagger.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Add delays for staggered animations */
.scroll-stagger:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-stagger:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-stagger:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-stagger:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-stagger:nth-child(5) {
    transition-delay: 0.5s;
}

.scroll-stagger:nth-child(6) {
    transition-delay: 0.6s;
}

nav {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s ease-out;
    position: relative;
    z-index: 1000;
}

nav.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

nav a {
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1AAE9F, #2563EB);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav img {
    transition: transform 0.3s ease;
}

#mobile-menu-button {
    transition: all 0.3s ease;
}

#mobile-menu-button:hover {
    transform: scale(1.1);
}

#hero {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s ease-out;
    position: relative;
    z-index: 1;
}

#hero.animate-visible {
    opacity: 1;
    transform: scale(1);
}

#hero h1 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.2s;
}

#hero h1.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

#hero p {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.4s;
}

#hero p.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

#hero .flex:has(a) {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.6s;
}

#hero .flex:has(a).animate-visible {
    opacity: 1;
    transform: translateY(0);
}

#hero .grid:has(.text-3xl) {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.8s;
}

#hero .grid:has(.text-3xl).animate-visible {
    opacity: 1;
    transform: translateY(0);
}

#hero a {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#hero a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

#hero a:hover::before {
    left: 100%;
}

#hero a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#hero .relative:last-child {
    opacity: 0;
    transform: translateX(30px);
    transition: all 1s ease-out 0.5s;
}

#hero .relative:last-child.animate-visible {
    opacity: 1;
    transform: translateX(0);
}

#hero img {
    transition: transform 0.3s ease;
}

#hero img:hover {
    transform: scale(1.05);
}

section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

section.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

article {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

article.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

article:nth-child(2) {
    transition-delay: 0.1s;
}

article:nth-child(3) {
    transition-delay: 0.2s;
}

article:nth-child(4) {
    transition-delay: 0.3s;
}

article:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

article svg,
.flex svg {
    transition: all 0.3s ease;
}

article:hover svg {
    transform: scale(1.2) rotate(5deg);
    color: #1AAE9F;
}

.grid>div {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.grid>div.animate-visible {
    opacity: 1;
    transform: scale(1);
}

.grid>div:nth-child(1) {
    transition-delay: 0.1s;
}

.grid>div:nth-child(2) {
    transition-delay: 0.2s;
}

.grid>div:nth-child(3) {
    transition-delay: 0.3s;
}

.grid>div:nth-child(4) {
    transition-delay: 0.4s;
}

button,
a[href] {
    transition: all 0.3s ease;
    position: relative;
}

button:hover,
a[href]:hover {
    transform: translateY(-2px);
}

.bg-primary,
.text-primary {
    position: relative;
    overflow: hidden;
}

.bg-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.bg-primary:hover::after {
    width: 300px;
    height: 300px;
}

img {
    transition: all 0.3s ease;
}

img:hover {
    transform: scale(1.02);
}

.rounded-full {
    transition: all 0.3s ease;
}

.rounded-full:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-3xl,
.text-2xl {
    transition: all 0.3s ease;
}

.text-3xl:hover,
.text-2xl:hover {
    transform: scale(1.1);
    color: #1AAE9F;
}

details {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

details.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

details[open] {
    animation: fadeInUp 0.3s ease-out;
}

details summary {
    transition: all 0.3s ease;
}

details:hover {
    background: rgba(26, 174, 159, 0.05);
}

details[open] {
    background: rgba(26, 174, 159, 0.05);
}

details[open] summary {
    border-bottom: 1px solid rgba(13, 148, 136, 0.2);
}

input,
textarea {
    transition: all 0.3s ease;
}

input:focus,
textarea:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(26, 174, 159, 0.1);
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.float-animation:nth-child(2) {
    animation-delay: 1s;
}

.float-animation:nth-child(3) {
    animation-delay: 2s;
}

/* Keep these animations running continuously */
.morphing-bg {
    background: linear-gradient(-45deg, #1AAE9F, #2563EB, #0D9488, #1AAE9F);
    background-size: 400% 400%;
    animation: morphing 15s ease infinite;
}

.bg-gradient-to-br,
.bg-gradient-to-r {
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes morphing {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.glow-effect {
    animation: glow 2s ease-in-out infinite alternate;
}

.shimmer-effect {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.loading-spinner {
    animation: rotate 1s linear infinite;
}

.bounce-effect {
    animation: bounce 2s infinite;
}

.stagger-animation>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.stagger-animation>*.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-animation>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-animation>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-animation>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-animation>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-animation>*:nth-child(6) {
    transition-delay: 0.6s;
}

#mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    flex-direction: column;
}

#mobile-menu.hidden {
    display: none !important;
}

#mobile-menu a {
    font-size: 1.25rem;
    padding: 1rem 0;
    width: 100%;
    max-width: 300px;
    display: block;
    transition: all 0.3s ease;
}

#mobile-menu a:hover {
    transform: scale(1.05);
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #1AAE9F;
}

.mobile-menu-close:hover {
    background: #1AAE9F;
    color: white;
    transform: rotate(90deg);
}

footer {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

footer.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    transform: translateY(-2px);
    color: #1AAE9F;
}

footer svg {
    transition: all 0.3s ease;
}

footer a:hover svg {
    transform: scale(1.2) rotate(5deg);
}

@media (max-width: 768px) {

    article:hover {
        transform: translateY(-5px);
    }

    img:hover {
        transform: scale(1.01);
    }

    button:hover,
    a[href]:hover {
        transform: translateY(-1px);
    }
}

.gpu-accelerated {
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

article,
button,
a,
img {
    will-change: transform;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.fade-in-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left-scroll {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.slide-in-left-scroll.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right-scroll {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.slide-in-right-scroll.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in-scroll {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.zoom-in-scroll.visible {
    opacity: 1;
    transform: scale(1);
}

.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg) translateZ(20px);
}

.magnetic-effect {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.magnetic-effect:hover {
    transform: translate3d(5px, -5px, 0);
}

@keyframes skeleton {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.skeleton {
    animation: skeleton 1.5s ease-in-out infinite;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
}

@keyframes neonPulse {
    from {
        text-shadow:
            0 0 5px #1AAE9F,
            0 0 10px #1AAE9F,
            0 0 15px #1AAE9F,
            0 0 20px #1AAE9F;
    }

    to {
        text-shadow:
            0 0 2px #1AAE9F,
            0 0 5px #1AAE9F,
            0 0 8px #1AAE9F,
            0 0 12px #1AAE9F;
    }
}

.typewriter {
    overflow: hidden;
    border-right: 2px solid #1AAE9F;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #1AAE9F;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.whatsapp_hatti {
    position: fixed !important;
    bottom: 20px;
    left: 15px;
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp_hatti.shake-effect {
    animation: attentionShake 2s ease-in-out;
}

.whatsapp_hatti:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.whatsapp_hatti div {
    display: flex;
    align-items: center;
}

.whatsapp_hatti div svg {
    width: 53px;
    height: 53px;
    background: #25d366;
    fill: #fff;
    padding: 10px;
    border-radius: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.whatsapp_hatti div span {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    color: #414141;
    padding: 7px 15px !important;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-weight: bold;
    min-width: 140px;
}

@media (max-width:994px) {
    .whatsapp_hatti {
        bottom: 40px;
    }
}

.siparis_hatti {
    position: fixed !important;
    bottom: 100px;
    left: 15px;
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.siparis_hatti.shake-effect {
    animation: attentionShake 2s ease-in-out;
}

.siparis_hatti:hover {
    transform: translateY(-5px);
    text-decoration: none;
}

.siparis_hatti div {
    display: flex;
    align-items: center;
}

.siparis_hatti div svg {
    width: 53px;
    height: 53px;
    background: #0b1099;
    color: #fff;
    padding: 10px;
    border-radius: 100%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.siparis_hatti div span {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    color: #414141;
    padding: 7px 15px !important;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    font-weight: bold;
    min-width: 140px;
}

@media (max-width:994px) {
    .siparis_hatti {
        bottom: 120px;
    }
}

.marquee-container {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    transform: translateX(0%);
    transition: transform 0.1s ease-out;
}

.marquee-text {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.25em;
    margin: 0 4rem;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
    position: relative;
}

.marquee-separator {
    font-size: 14px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 3rem;
    text-shadow: 0 2px 8px rgba(26, 174, 159, 0.5);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

@media (max-width: 1024px) {
    .marquee-text {
        letter-spacing: 0.2em;
        margin: 0 3rem;
    }

    .marquee-separator {
        margin: 0 2rem;
    }
}

@media (max-width: 768px) {
    .marquee-text {
        letter-spacing: 0.15em;
        margin: 0 2.5rem;
    }

    .marquee-separator {
        margin: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .marquee-text {
        letter-spacing: 0.1em;
        margin: 0 2rem;
    }

    .marquee-separator {
        margin: 0 1.2rem;
    }
}

.flag-icon {
    font-style: normal;
    line-height: 1;
}

header {
    position: relative;
    z-index: 1000;
}

#language-selector-desktop,
#language-selector-mobile {
    position: relative;
    z-index: 1000;
}

#language-selector-desktop:hover,
#language-selector-mobile:hover {
    border-color: rgba(26, 174, 159, 0.3);
    background: rgba(26, 174, 159, 0.05);
}

#language-dropdown-desktop,
#language-dropdown-mobile {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99999 !important;
    position: absolute;
}

#language-dropdown-desktop.show,
#language-dropdown-mobile.show {
    display: block !important;
    transform: translateY(0);
    opacity: 1;
}

.language-option {
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.language-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 174, 159, 0.1), rgba(26, 174, 159, 0.05));
    transition: width 0.3s ease;
}

.language-option:hover::before {
    width: 100%;
}

.language-option:hover {
    transform: translateX(5px);
    text-decoration: none;
}

#language-dropdown-icon-desktop,
#language-dropdown-icon-mobile {
    transition: transform 0.3s ease;
}

#language-dropdown-icon-desktop.rotated,
#language-dropdown-icon-mobile.rotated {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    #language-dropdown-mobile {
        position: static;
        box-shadow: none;
        border: 1px solid rgba(148, 163, 184, 0.3);
    }
}

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

body.rtl .flex {
    flex-direction: row-reverse;
}

body.rtl nav .flex {
    justify-content: space-between;
}

body.rtl nav .gap-8 {
    flex-direction: row-reverse;
}

body.rtl #language-dropdown-desktop {
    left: 0;
    right: auto;
}

body.rtl .grid {
    direction: rtl;
}

body.rtl .text-left {
    text-align: right;
}

body.rtl .text-right {
    text-align: left;
}

body.rtl .space-x-2>*+* {
    margin-left: 0;
    margin-right: 0.5rem;
}

body.rtl .gap-3 {
    flex-direction: row-reverse;
}

body.rtl .gap-2 {
    flex-direction: row-reverse;
}

body.rtl .justify-between {
    flex-direction: row-reverse;
}

body.rtl .language-option:hover {
    transform: translateX(-5px);
}

body.rtl .scroll-fadeInLeft {
    transform: translateX(30px);
}

body.rtl .scroll-fadeInRight {
    transform: translateX(-30px);
}

body.rtl .slide-in-left-scroll {
    transform: translateX(100px);
}

body.rtl .slide-in-right-scroll {
    transform: translateX(-100px);
}

body.rtl,
body.rtl * {
    font-family: 'Arial', 'Tahoma', sans-serif;
}

body.rtl .text-3xl,
body.rtl .text-2xl,
body.rtl .text-xl {
    line-height: 1.4;
}

body.rtl .marquee-content {
    direction: rtl;
}

body.rtl #mobile-menu {
    text-align: right;
}

body.rtl #mobile-menu .flex {
    flex-direction: row-reverse;
}

body.rtl .mobile-menu-close {
    left: 2rem;
    right: auto;
}

@media (max-width: 1023px) {
    #hero .grid {
        display: flex !important;
        flex-direction: column !important;
    }

    #hero .grid>div:first-child {
        order: 2;
    }

    #hero .grid>div:last-child {
        order: 1;
    }
}

@keyframes attentionShake {

    0%,
    100% {
        transform: translateX(0) scale(1);
    }

    10% {
        transform: translateX(-3px) scale(1.02);
    }

    20% {
        transform: translateX(3px) scale(1.05);
    }

    30% {
        transform: translateX(-3px) scale(1.02);
    }

    40% {
        transform: translateX(3px) scale(1.05);
    }

    50% {
        transform: translateX(-2px) scale(1.08);
    }

    60% {
        transform: translateX(2px) scale(1.05);
    }

    70% {
        transform: translateX(-1px) scale(1.02);
    }

    80% {
        transform: translateX(1px) scale(1.03);
    }

    90% {
        transform: translateX(0) scale(1.01);
    }
}