/* استيراد الخطوط (إذا لم تكن متوفرة على النظام) */
@import url('https://fonts.googleapis.com/css2?family=Dubai:wght@300;400;500;700&display=swap');

body {
    font-family: 'Dubai', sans-serif;
    direction: rtl;
    text-align: right;
}

/* تخصيص ألوان Bootstrap الافتراضية */
:root {
    --bs-primary: #27AE60;  /* */
    --bs-secondary: #F39C12; /* */
    --bs-primary-rgb: 39, 174, 96;
    --bs-secondary-rgb: 243, 156, 18;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: #229954;
    border-color: #229954;
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: #fff;
}

.btn-secondary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    color: #fff;
}

.navbar-brand img {
    max-height: 45px;
}

.nav-link {
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 10px;
}

.btn-lg-download {
    font-weight: bold;
    padding: 0.75rem 1.5rem;
}

/* Hero Section */
.hero-section {
    background-color: #f4f6f8; /* */
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-weight: 700;
    font-size: 3.5rem;
    color: #2C3E50; /* */
}

.hero-section .lead {
    font-size: 1.4rem;
    color: #8E8E93; /* */
    margin-bottom: 30px;
}

/* Features / How it works */
.feature-icon {
    font-size: 3rem;
    color: var(--bs-primary);
}

/* Footer */
.footer {
    background-color: #2C3E50; /* */
}

.footer a {
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--bs-primary) !important;
}

.scit-credit {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 5px;
    display: block;
}

/* Page Headers */
.page-header {
    background-color: var(--bs-primary);
    background: linear-gradient(90deg, var(--bs-primary) 0%, #229954 100%);
    padding: 60px 0;
    color: white;
}
.page-header h1 {
    font-weight: 700;
    font-size: 3rem;
}

/* Service Card */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* FAQ (Help Page) */
.faq-item .accordion-button {
    font-weight: 700;
    font-family: 'Dubai', sans-serif;
}
.faq-item .accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background-color: #f4f6f8;
}
.faq-item .accordion-body {
    line-height: 1.8;
}