:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #1e40af;
}

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

.gradient-bg {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.language-selector {
    transition: all 0.3s ease;
}

.language-selector:hover {
    transform: scale(1.05);
}

.language-selector.active {
    background: #2563eb !important;
    color: #ffffff !important;
}

.language-selector.active span {
    color: #ffffff !important;
}

.step-connector {
    position: relative;
}

.step-connector:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 50px;
    height: 2px;
    background: #d1d5db;
}

@media (max-width: 768px) {
    .step-connector:after {
        display: none;
    }
}

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

.snippet-ltr {
    direction: ltr;
    text-align: left;
    unicode-bidi: isolate;
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}
