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

.hero-section {
    height: 100vh;
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
}

.btn-warning {
    font-weight: bold;
    transition: 0.3s;
}

.btn-warning:hover {
    background-color: #ffb703;
    transform: scale(1.05);
}

.swal2-popup {
    font-family: 'Cairo', sans-serif;
}

/* قسم الأسعار */
#pricing .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pricing .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

#pricing ul li {
    margin: 8px 0;
    font-size: 1rem;
}

/* قسم الأسئلة الشائعة */
#faq .accordion-button {
    background-color: #f8f9fa;
    color: #333;
    box-shadow: none;
    transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed) {
    background-color: #0d6efd;
    color: white;
}

#faq .accordion-body {
    background-color: #ffffff;
    color: #555;
}

/* قسم الإحصائيات */
#stats h2 {
    font-size: 3rem;
    font-weight: bold;
}

#stats p {
    font-size: 1.2rem;
    margin-top: 5px;
}

/* قسم العملاء */
.Clients {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

/* زر العودة للأعلى */
#backToTop {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    display: none;
    font-size: 20px;
    font-weight: bold;
    z-index: 1000;
    transition: 0.3s;
}

#backToTop:hover {
    background-color: #ffb703;
    transform: scale(1.1);
}

/* قسم آراء العملاء */
#testimonials img {
    border: 3px solid #ffb703;
}