/* u0645u0644u0641 u0627u0644u0647u0648u064au0629 u0627u0644u0628u0635u0631u064au0629 u0644u0645u0646u0635u0629 u0628u0631u0648 u0625u0646 */

:root {
    /* u0627u0644u0623u0644u0648u0627u0646 u0627u0644u0631u0626u064au0633u064au0629 */
    --purple-dark: #5d2d90; /* u0628u0646u0641u0633u062cu064a u062fu0627u0643u0646 */
    --blue-sky: #42b6e9;    /* u0623u0632u0631u0642 u0633u0645u0627u0648u064a */
    --pink-dark: #da296d;   /* u0648u0631u062fu064a u062fu0627u0643u0646 */
    --yellow-sand: #ffd86c; /* u0623u0635u0641u0631 u0631u0645u0644u064a */
    
    /* u0623u0644u0648u0627u0646 u0625u0636u0627u0641u064au0629 u0648u062fu0631u062cu0627u062a u0627u0644u0623u0644u0648u0627u0646 u0627u0644u0631u0626u064au0633u064au0629 */
    --purple-light: #8c5fb5;
    --purple-lighter: #b99ed2;
    --blue-light: #7acbf1;
    --blue-lighter: #b2e1f7;
    --pink-light: #e76a9c;
    --pink-lighter: #f2a8c6;
    --yellow-light: #ffea9f;
    --yellow-lighter: #fff5d0;
    
    /* u0627u0644u0623u0644u0648u0627u0646 u0627u0644u0645u062du0627u064au062fu0629 */
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #999999;
    --gray-lighter: #f5f5f5;
    --white: #ffffff;
    
    /* u0627u0644u062eu0637u0648u0637 */
    --font-primary: 'Helvetica Neue LT Arabic', 'Tajawal', 'Cairo', sans-serif;
    --font-secondary: 'Helvetica Neue LT Arabic', 'Almarai', 'Arial', sans-serif;
    --font-heading: 'Helvetica Neue LT Arabic', 'Tajawal', 'Arial', sans-serif;
    --font-english: 'Orbitron', 'Arial', sans-serif;
    
    /* u0642u064au0645 u0627u0644u062au0635u0645u064au0645 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --transition-base: all 0.3s ease-in-out;
}

/* u0625u0639u0627u062fu0629 u062au0639u0631u064au0641 u0623u0644u0648u0627u0646 Bootstrap */
.btn-primary {
    background-color: var(--purple-dark);
    border-color: var(--purple-dark);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: var(--purple-light) !important;
    border-color: var(--purple-light) !important;
}

.btn-secondary {
    background-color: var(--blue-sky);
    border-color: var(--blue-sky);
}

.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background-color: var(--blue-light) !important;
    border-color: var(--blue-light) !important;
}

.btn-accent {
    background-color: var(--pink-dark);
    border-color: var(--pink-dark);
    color: white;
}

.btn-accent:hover, .btn-accent:focus, .btn-accent:active {
    background-color: var(--pink-light) !important;
    border-color: var(--pink-light) !important;
    color: white !important;
}

.btn-outline-primary {
    color: var(--purple-dark);
    border-color: var(--purple-dark);
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    background-color: var(--purple-dark) !important;
    border-color: var(--purple-dark) !important;
    color: white !important;
}

.text-primary {
    color: var(--purple-dark) !important;
}

.text-secondary {
    color: var(--blue-sky) !important;
}

.text-accent {
    color: var(--pink-dark) !important;
}

.bg-primary {
    background-color: var(--purple-dark) !important;
}

.bg-secondary {
    background-color: var(--blue-sky) !important;
}

.bg-accent {
    background-color: var(--pink-dark) !important;
}

.bg-light {
    background-color: var(--gray-lighter) !important;
}

/* u0627u0644u0643u0644u0627u0633u0627u062a u0627u0644u0625u0636u0627u0641u064au0629 u0644u0644u0647u0648u064au0629 */
.navbar {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
}

.footer {
    background: linear-gradient(135deg, var(--purple-dark), var(--gray-dark));
    color: white;
}

.section-title {
    color: var(--purple-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--blue-sky);
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.card-highlight {
    border-top: 4px solid var(--purple-dark);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.card-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-section {
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-dark) 100%);
    color: white;
    padding: 5rem 0;
}

.feature-icon {
    background-color: var(--yellow-light);
    color: var(--purple-dark);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.cta-section {
    background-color: var(--blue-sky);
    color: white;
    padding: 4rem 0;
}

/* الأنماط الخاصة بالصفحات الداخلية */
.inner-page-header {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-light));
    color: white;
    padding: 3rem 0;
}

.page-title {
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 1rem;
}

.breadcrumb-item a {
    color: var(--yellow-sand);
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* أنماط التحميل */
.loader-container {
    background-color: var(--white);
}

.loader {
    border-top-color: var(--purple-dark);
}

/* أنماط القيم */
.value-card {
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

.value-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--purple-dark);
    margin-bottom: 1.5rem;
}

/* أنماط فريق العمل */
.team-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.team-img {
    position: relative;
    overflow: hidden;
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(93, 45, 144, 0.9);
    padding: 10px 0;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
}

.team-info {
    padding: 20px;
    text-align: center;
    background-color: white;
}

.team-info h4 {
    color: var(--purple-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-info p {
    color: var(--gray-medium);
    margin-bottom: 0;
}

/* أنماط الأهداف */
.goal-card {
    border-radius: var(--radius-md);
    border-right: 5px solid var(--purple-dark);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    margin-bottom: 2rem;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.goal-number {
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    color: rgba(93, 45, 144, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: var(--font-english);
}

.goal-content {
    position: relative;
    z-index: 1;
}

.goal-content h3 {
    color: var(--purple-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.goal-indicators {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.goal-indicator {
    margin-bottom: 0.5rem;
}

.indicator-title {
    font-weight: 600;
    color: var(--blue-sky);
    display: block;
    margin-bottom: 0.5rem;
}

.indicator-item {
    display: block;
    padding-right: 1rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.indicator-item:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    color: var(--purple-light);
}

/* أنماط البروفايل */
.info-card {
    border-radius: var(--radius-md);
    border-top: 4px solid var(--purple-dark);
    margin-bottom: 2rem;
    background-color: white;
}

.card-title {
    color: var(--purple-dark);
    font-weight: 600;
    font-size: 1.3rem;
}

.info-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--gray-medium);
    display: block;
    margin-bottom: 0.25rem;
}

.info-value {
    color: var(--gray-dark);
}

.capability-card {
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border-bottom: 3px solid var(--blue-sky);
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.capability-icon {
    font-size: 2.5rem;
    color: var(--purple-dark);
}

.capability-card h4 {
    color: var(--purple-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* تايملاين */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    background-color: var(--purple-light);
    right: 0;
    left: 0;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-right: 3rem;
    width: 50%;
    right: 0;
}

.timeline-item:nth-child(even) {
    right: 50%;
    padding-right: 0;
    padding-left: 3rem;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--purple-dark);
    top: 0;
    right: -10px;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(even) .timeline-dot {
    right: auto;
    left: -10px;
}

.timeline-date {
    position: absolute;
    top: -5px;
    right: 2rem;
    padding: 5px 15px;
    background-color: var(--yellow-sand);
    color: var(--purple-dark);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-family: var(--font-english);
}

.timeline-item:nth-child(even) .timeline-date {
    right: auto;
    left: 2rem;
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-content h4 {
    color: var(--purple-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content ul {
    padding-right: 1.5rem;
    margin-bottom: 0;
}

.timeline-content ul li {
    margin-bottom: 0.5rem;
}

/* أنماط الخدمات */
.service-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--yellow-sand);
    color: var(--purple-dark);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 1rem;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-sm);
}

.service-title {
    color: var(--purple-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.service-footer {
    margin-top: auto;
    padding-top: 1rem;
    text-align: center;
}
