@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    text-align: right;
}

.navbar-brand i {
    margin-left: 10px;
}

.card {
    transition: transform 0.3s;
}

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

.hero-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: white;
    padding: 80px 0;
}

.feature-icon {
    font-size: 3rem;
    color: #0d6efd;
    margin-bottom: 20px;
}

.testimonial-card {
    border-right: 3px solid #0d6efd;
}

.pricing-card {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white !important;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
}
