/* Hero Section */
.page-header {
    position: relative;
    height: 350px;
    width: 100%;
    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.5);
}

.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; 
}

.breadcrumb-item.active { 
    color: #fff; 
}

.breadcrumb-item + .breadcrumb-item::before { 
    color: #ccc; 
}

/* Widgets */
.sidebar-widget {
    background: #fff; 
    padding: 20px; 
    border-radius: 12px; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.03); 
    margin-bottom: 25px; 
    border: 1px solid #eee;
}

.widget-title { 
    font-weight: 700; 
    margin-bottom: 20px; 
    padding-bottom: 10px; 
    border-bottom: 2px solid #f1f1f1; 
    position: relative; 
}

.widget-title::after { 
    content: ''; 
    position: absolute; 
    bottom: -2px; 
    right: 0; 
    width: 50px; 
    height: 2px; 
    background: var(--primary-color); 
}

.contact-form-wrapper {
    background: #fff; 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.03); 
    border: 1px solid #eee;
}

/* Cards & Features */
.am-feature-stack .am-card { 
    margin-bottom: 1rem; 
    border-radius: 12px; 
    padding: 20px; 
    background: #fff; 
    border: 1px solid #eee; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.03); 
}

.am-card h6 { 
    margin-bottom: 8px; 
}

/* Team Image */
.rounded-circle2 { 
    border-radius: 50% !important; 
    width: 120px !important; 
    height: 120px !important; 
    object-fit: cover; 
}

.rounded-circle2.mb-3 {
    width: 90px !important;
    height: 90px !important;
}

/* Timeline */
.am-timeline li {
    display: flex;
}

.step {
    margin: 5px 0 10px 10px;
}

/* --- الفئات المضافة بدلاً من الـ Inline Styles --- */

/* كلاس للقوائم التي كانت تحتوي على padding-inline-start */
.custom-list-padding {
    padding-inline-start: 18px;
}

/* كلاس مخصص لدائرة رقم الخطوة في التايم لاين */
.timeline-step-badge {
    background: var(--primary-color);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}