/* الهيدر */
.navbar {
    background-color: #1f252b;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: #f0f0f0;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #00d4aa;
}

.logo img {
    max-height: 60px;
}/* الأساس */
body {
    background-color: #0f1216;
    color: #ffffff;
    /* النصوص باللون الأبيض */
    font-family: 'Cairo', sans-serif;
    line-height: 1.7;
}

/* الهيدر */
.navbar {
    background-color: #0b0f13;
}

.navbar .nav-link {
    color: #e0e0e0 !important;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #06c4a6 !important;
    font-weight: bold;
}

/* الكروت */
.card {
    background-color: #1a1f25;
    border: 1px solid #2c323a;
    border-radius: 10px;
    color: #fff;
}

/* الحقول */
.form-control,
.form-select {
    background-color: #f9f9f9;
    /* خلفية فاتحة */
    color: #000;
    /* نص أسود داخل الحقول */
    border: 1px solid #ccc;
    border-radius: 6px;
}

.form-control:focus,
.form-select:focus {
    border-color: #06c4a6;
    box-shadow: 0 0 0 0.2rem rgba(6, 196, 166, 0.25);
}

/* الليبل */
.form-label {
    font-weight: 600;
    color: #ffffff;
}

/* الأزرار */
.btn-success {
    background: linear-gradient(90deg, #12d8bf, #06b3c4);
    border: none;
    color: #fff;
    font-weight: bold;
}

.btn-success:hover {
    opacity: 0.9;
}

/* الأقسام */
.section-title {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
}

/* الرسالة بعد الإرسال */
.alert-success {
    background-color: #0d6efd;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

/* Checkbox services */
.service-col {
    columns: 2;
}

@media (max-width: 576px) {
    .service-col {
        columns: 1;
    }
}

.form-check-label {
    color: #ffffff;
    font-size: 0.95rem;
}