/* ==========================================
   الستايلات العامة للهيدر وتقسيم الشاشة
========================================== */
@media (min-width: 992px) {
    .col-lg-custom-5 { flex: 0 0 auto; width: 20%; }
}

.page-header {
    position: relative;
    height: 350px;
    width: 100%;
    /* تم نقل background-image للـ HTML */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.page-header::before { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.6); 
}

.page-header-content { 
    position: relative; 
    z-index: 2; 
}

.breadcrumb { 
    background: transparent; 
    padding: 0; 
    justify-content: center; 
    margin-bottom: 0; 
}

.breadcrumb-item a { 
    color: #ccc; 
    text-decoration: none; 
    transition: 0.3s; 
}

.breadcrumb-item a:hover { 
    color: #fff; 
}

.breadcrumb-item.active { 
    color: #fff; 
}

/* ==========================================
   بطاقات فريق العمل
========================================== */
.team-card { 
    background: #fff; 
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    transition: all 0.4s ease; 
    text-align: center; 
    height: 100%; 
    position: relative; 
    border: 1px solid #eee; 
}

.team-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
}

.team-img-wrapper { 
    position: relative; 
    height: 300px; 
    overflow: hidden; 
}

.team-img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}

.team-card:hover .team-img-wrapper img { 
    transform: scale(1.1); 
}

.team-social-overlay { 
    position: absolute; 
    bottom: -50px; 
    left: 0; 
    width: 100%; 
    padding: 15px 0; 
    display: flex; 
    justify-content: center; 
    gap: 15px; 
    transition: 0.4s; 
}

.team-card:hover .team-social-overlay { 
    bottom: 0; 
}

.team-social-overlay a { 
    color: var(--dark-color); 
    font-size: 1.1rem; 
    transition: 0.3s; 
    width: 35px; 
    height: 35px; 
    background: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

.team-social-overlay a:hover { 
    background: var(--primary-color); 
    color: #fff; 
}

.team-info { 
    padding: 25px 15px; 
}

.team-name { 
    font-weight: 700; 
    font-size: 1.1rem; 
    margin-bottom: 5px; 
    color: var(--dark-color); 
}

.team-role { 
    color: var(--primary-color); 
    font-size: 0.85rem; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

/* ==========================================
   قسم التوظيف
========================================== */
.hiring-section { 
    background-color: var(--light-bg); 
    border-radius: 20px; 
    padding: 60px 40px; 
    text-align: center; 
    border: 2px dashed #ddd; 
    transition: 0.3s; 
}

.hiring-section:hover { 
    border-color: var(--primary-color); 
    background: #fff; 
}

/* كلاس مضاف لتعويض الاستايل الداخلي (inline style) */
.hiring-desc-text {
    max-width: 600px;
}