/* =============================================
   🟦 سيكشن الشركات التابعة – تصميم بمربعات
============================================= */

.msahem-subs-simple {
    padding: 80px 0;
    background: #f4f5f7; /* خلفية خفيفة راقية */
}

/* ====== العنوان ====== */
.subs-simple-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.subs-simple-header h2 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: 700;
}

.subs-simple-header p {
    font-size: 15px;
    color: #475569;
    line-height: 1.9;
}

/* ====== الشبكة ====== */
.subs-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

/* ====== البطاقة ====== */
.subs-simple-card {
    background: #ffffff;
    padding: 26px 20px;
    border-radius: 22px;
    text-align: center;

    border: 1px solid rgba(217, 179, 106, 0.35); /* ذهب خفيف */
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.subs-simple-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

/* ====== الشعار (مربع كبير وواضح) ====== */
.subs-simple-logo {
    width: 130px;          /* 👈 تكبير الإطار */
    height: 130px;
    margin: 0 auto 18px;

    background: #ffffff;
    border-radius: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(217, 179, 106, 0.7);  /* إطار ذهبي أوضح */
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.subs-simple-logo img {
    width: 90%;            /* 👈 الشعار نفسه كبير */
    height: auto;
    object-fit: contain;
}

/* ====== النصوص داخل البطاقة ====== */
.subs-simple-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.subs-location,
.subs-age,
.subs-entity {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.subs-location {
    color: #475569;
}

.subs-age {
    color: #D97706; /* ذهبي مائل للبرتقالي للعمر */
    margin-top: 4px;
}

.subs-entity {
    color: #0f172a;
    margin-top: 4px;
    font-weight: 500;
}


/* =============================================
   صفحة مشاريع مساهم
============================================= */

.projects-page-intro {
    padding: 150px 0 65px;
    background:
        radial-gradient(circle at 15% 20%, rgba(197, 138, 45, 0.12), transparent 30%),
        linear-gradient(135deg, #0f172a 0%, #172033 55%, #1e293b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.projects-page-intro::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    left: -100px;
    bottom: -170px;
}

.projects-page-heading {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.projects-page-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 18px;
    margin-bottom: 18px;
    border: 1px solid rgba(217, 179, 106, 0.45);
    border-radius: 999px;
    color: #d9b36a;
    font-size: 13px;
    font-weight: 700;
}

.projects-page-heading h1 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
}

.projects-page-heading p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 2;
}

@media (max-width: 768px) {
    .projects-page-intro {
        padding: 120px 18px 50px;
    }

    .projects-page-heading h1 {
        font-size: 30px;
    }

    .projects-page-heading p {
        font-size: 14px;
        line-height: 1.9;
    }
}
