/* تنسيقات عامة */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* تخصيص الشريط العلوي */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* تخصيص البطاقات */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.card-header {
    border-radius: 15px 15px 0 0 !important;
    font-weight: bold;
}

/* تخصيص الأزرار */
.btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-rounded {
    border-radius: 50px;
}

/* تخصيص الصور الشخصية */
.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

/* تخصيص الأيقونات الاجتماعية */
.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: all 0.3s;
    display: inline-block;
}

.social-icons a:hover {
    color: #0d6efd;
    transform: translateY(-3px);
}

/* تخصيص قسم البطل */
.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #6f42c1 100%);
    color: white;
    padding: 80px 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
    font-weight: 800;
}

/* تخصيص الرسوم المتحركة */
.animate__animated {
    animation-duration: 1s;
}

/* تخصيص التنبيهات */
.alert {
    border-radius: 15px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* تخصيص النماذج */
.form-control.rounded-pill {
    border-radius: 50px;
    padding: 15px 20px;
    border: 1px solid #ced4da;
    transition: all 0.3s;
}

.form-control.rounded-pill:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    border-color: #80bdff;
}

.form-select.rounded-pill {
    border-radius: 50px;
    padding: 15px 20px;
}

.form-floating>label {
    right: 20px !important;
    left: auto !important;
    padding: 1rem 0.75rem;
}

/* تخصيص التقييمات */
.text-warning {
    color: #ffc107 !important;
}

.star-rating {
    direction: ltr;
}

/* تخصيص التذييل */
footer {
    margin-top: auto;
    background: #343a40 !important;
}

/* تخصيص الجداول */
.table th {
    border-top: none;
    font-weight: 600;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.02);
}

/* تخصيص البطاقات في الصفحة الرئيسية */
.features .card {
    text-align: center;
    border: none;
    transition: transform 0.3s ease;
}

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

.features .card-body {
    padding: 2rem;
}

.features i {
    margin-bottom: 1rem;
}

/* تخصيص قسم آراء العملاء */
.testimonials .card {
    border: 1px solid #e9ecef;
}

.testimonials .card-body {
    padding: 1.5rem;
}

/* تخصيص الصور الدائرية */
.rounded-circle {
    border: 3px solid #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* تخصيص الروابط */
a {
    color: #0d6efd;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #0a58ca;
}

/* تخصيص النصوص */
.text-justify {
    text-align: justify;
}

/* تخصيص الهوامش */
.mt-6 {
    margin-top: 4rem !important;
}

.mb-6 {
    margin-bottom: 4rem !important;
}

/* تخصيص الألوان */
.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #6610f2 100%) !important;
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
}

/* تخصيص الأشكال */
.rounded-lg {
    border-radius: 1rem !important;
}

/* تخصيص الظلال */
.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* تخصيص العناوين */
.display-4 {
    font-weight: 800;
}

/* تخصيص الأيقونات */
.icon-lg {
    font-size: 3rem;
}

/* تخصيص الأزرار في الشريط العلوي */
.navbar .btn {
    padding: 0.375rem 0.75rem;
}

/* تخصيص الاستجابة للشاشات الصغيرة */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .features .card {
        margin-bottom: 1.5rem;
    }
    
    .testimonials .card {
        margin-bottom: 1.5rem;
    }
}