:root {
    --primary-dark: #0d1b2a;
    --primary-light: #1b4965;
    --accent-sky: #62b6cb;
    --accent-orange: #f39c12;
    --light-bg: #ffffff;
    --light-text: #f8f9fa;
    --dark-text: #333333;
}

* {
    font-family: 'Cairo', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--dark-text);
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', 'Cairo', sans-serif;
    font-weight: 600;
}

.navbar {
    background-color: var(--primary-dark);
    padding: 15px 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
}

.logo span {
    color: var(--accent-sky);
}

.navbar-nav .nav-link {
    color: white !important;
    margin: 0 8px;
}

.navbar-nav .nav-link.active {
    color: var(--accent-sky) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-sky) !important;
}

.page-header {
    background: linear-gradient(rgba(13, 27, 42, 0.8), rgba(13, 27, 42, 0.9)), url('https://images.unsplash.com/photo-1585506936727-1c2c9acec1e7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.breadcrumb {
    background-color: transparent;
    justify-content: center;
}

.breadcrumb-item a {
    color: var(--accent-sky);
    text-decoration: none;
}

.about-hero {
    padding: 100px 0;
}

.hero-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-sky);
    display: block;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.section-title {
    color: var(--primary-dark);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 0;
}

.center-title:after {
    right: 50%;
    transform: translateX(50%);
}

.about-content-section {
    padding: 80px 0;
}

.mission-vision-box {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.mission-vision-box:hover {
    transform: translateY(-10px);
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-vision-icon i {
    font-size: 35px;
    color: var(--accent-sky);
}

.matrouh-section {
    background-color: rgba(98, 182, 203, 0.05);
    padding: 100px 0;
}

.matrouh-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.matrouh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.matrouh-img:hover img {
    transform: scale(1.05);
}

.services-section {
    padding: 100px 0;
}

.service-card {
    text-align: center;
    padding: 40px 20px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(98, 182, 203, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 35px;
    color: var(--accent-sky);
}

.team-section {
    padding: 100px 0;
    background-color: rgba(13, 27, 42, 0.03);
}

.team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-primary {
    background-color: var(--accent-sky);
    border-color: var(--accent-sky);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-accent {
    background-color: var(--accent-orange);
    border-color: var(--accent-orange);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

.btn-accent:hover {
    background-color: #e67e22;
    border-color: #e67e22;
}

/* الفوتر */
.footer {
    background-color: var(--primary-dark);
    color: var(--light-text);
    padding-top: 80px;
}

.footer h5 {
    color: var(--accent-sky);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h5:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: var(--accent-sky);
    bottom: 0;
    right: 0;
}

.footer-links a {
    color: var(--light-text);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-sky);
    padding-right: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
    color: var(--light-text);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent-sky);
    transform: translateY(-5px);
}

.copyright {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
}

.maay {
    color: chocolate;
    text-decoration: none;
    font-weight: 600;
}

.maay:hover {
    color: var(--accent-sky);
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .hero-number {
        font-size: 2.5rem;
    }
}