: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/background.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);
}

/* About Content */
.about-content {
    padding: 100px 0;
}

.section-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    right: 0;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-color), #e6c34e);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

/* Vision Mission */
.vision-mission-section {
    padding: 100px 0;
}

.vm-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.vm-card:hover {
    transform: translateY(-10px);
}

.vm-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;
}

.vm-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.vm-card p {
    line-height: 1.7;
    color: #666;
}

/* Values */
.values-section {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-item h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

/* Organizational Structure */
.org-section {
    padding: 100px 0;
}

.org-chart {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.org-level {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.org-item {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 200px;
    margin: 0 15px;
}

.org-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.org-item.ceo {
    background: linear-gradient(135deg, var(--primary-color), #e6c34e);
    color: white;
}

.org-item.ceo h4, .org-item.ceo p {
    color: white;
}

.org-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.org-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Certifications */
.certifications-section {
    padding: 80px 0;
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.cert-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 50px;
}

.cert-item {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-10px);
}

.cert-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 20px;
}

.cert-item h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.cert-item p {
    color: #ccc;
    margin: 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;
    }
    
    .org-level {
        flex-direction: column;
        align-items: center;
    }
    
    .org-item {
        margin-bottom: 20px;
    }
    
    .navbar-nav {
        text-align: right;
        padding-top: 15px;
    }
    
    .chairman-image {
        height: 300px;
    }
}