/* =============================
   SECTORS – أنواع القطاعات
============================= */

.msahem-sectors {
    padding: 80px 0;
    background: transparent;              /* بدون خلفية غامقة */
}

.msahem-sectors .container {
    max-width: 1000px;
}

/* العنوان والوصف */
.sectors-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}

.sectors-title {
    font-size: 30px;
    font-weight: 800;
    color: #0b1020;                       /* أزرق داكن */
    margin-bottom: 10px;
}

.sectors-subtitle {
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
}

/* الصندوق الخلفي للكبسولات */
.sectors-pill-box {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
    padding: 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* كل سطر من الكبسولات */
.sectors-pill-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

/* الكبسولة نفسها */
.sector-pill {
    flex: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;

    background: #f9fafb;
    /* بدون إطار */
    border: none;

    transition: 0.2s ease;
    cursor: default;
}

/* هوفر بسيط */
.sector-pill:hover {
    background: #edf2ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.10);
}

/* أيقونة الكبسولة */
.pill-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #0b1020;                  /* أزرق داكن */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* النص */
.pill-label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
}

/* موبايل وتابلت */
@media (max-width: 900px) {
    .sectors-pill-box {
        padding: 18px 16px;
    }

    .sectors-pill-row {
        flex-direction: column;
    }

    .sector-pill {
        width: 100%;
    }
}
/* إضافة حدود ذهبية ناعمة للكبسولات */
.sector-pill {
    border: 1px solid rgba(217, 179, 106, 0.55); /* ذهب خفيف */
    padding: 10px 18px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03); /* لمعة بسيطة */
    transition: 0.25s ease;
}

/* تأثير hover فاخر */
.sector-pill:hover {
    background: rgba(217, 179, 106, 0.09);
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(217, 179, 106, 0.35);
}
