:root {
    --primary-color: #D4AF37; /* ذهبي */
    --secondary-color: #1a1a1a; /* أسود داكن */
    --accent-color: #f8f9fa; /* أبيض */
    --text-color: #333;
    --light-text: #f8f9fa;
}

body {
    font-family: 'Tajawal', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: #f9f9f9;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(26, 26, 26, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.dropdown-menu {
    background-color: rgba(26, 26, 26, 0.95);
    border: 1px solid var(--primary-color);
}

.dropdown-item {
    color: var(--light-text);
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.language-switcher {
    color: var(--light-text);
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-switcher:hover {
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/10.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    color: var(--light-text);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--light-text);
}

/* CEO Section */
.ceo-section {
    padding: 100px 0;
}

.ceo-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 900px; /* تحديد عرض مناسب */
    margin: auto; /* توسيط الكارت */
}

.ceo-card:hover {
    transform: translateY(-10px);
}

.ceo-image-container {
    position: relative;
    height: 650px; 
    overflow: hidden;
}

.ceo-image {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.ceo-card:hover .ceo-image {
    transform: scale(1.05);
}


.ceo-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
}

.ceo-name {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.ceo-position {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.ceo-content {
    padding: 50px;
}

.message-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.message-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    right: 0;
}

.ceo-message {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
}

.message-quote {
    background: linear-gradient(135deg, var(--primary-color), #e6c34e);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.message-quote::before {
    content: '"';
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* CEO Stats */
.ceo-stats {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin: 0 auto 25px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 70px 0 20px;
}

.footer-logo {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-heading {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -8px;
    right: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
} */

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .ceo-image-container {
        height: 400px;
    }
    
    .ceo-content {
        padding: 30px 20px;
    }
    
    .ceo-name {
        font-size: 1.8rem;
    }
    
    .timeline::before {
        right: 30px;
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 70px;
        padding-left: 0;
        right: 0 !important;
        left: 0 !important;
    }
    
    .timeline-content {
        text-align: right !important;
        border-right: 4px solid var(--primary-color) !important;
        border-left: none !important;
    }
    
    .navbar-nav {
        text-align: right;
        padding-top: 15px;
    }
}