/* Custom styles for RTL layout */
body {
    font-family: 'Vazirmatn', sans-serif;
}

/* Animation for cards */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
}

/* Custom button styles */
.btn-primary {
    background-color: #059669;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #047857;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: white;
    color: #059669;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}