 
              @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;400;500;700;800;900&display=swap');

        :root {
            --main-color: #697099;
            --accent-color: #A65E7F;
            --bg-color: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: 'Tajawal', sans-serif;
            background: var(--bg-color);
            color: #333;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            overflow-x: hidden;
        }

        main {
            flex: 1;
        }

        /* ====== الشعار فوق الشريطين ====== */
        .logo-top {
            width: 100%;
            background: #fff;
            display: flex;
            align-items: center;
            padding: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .logo-top img {
            height: 80px;
            margin-left: 15px;
        }

        .logo-top span {
            font-size: 28px;
            font-weight: bold;
            color: var(--main-color);
        }

        /* ====== شريط أعلى الشريط الرئيسي ====== */
        .top-bar {
            width: 100%;
            background: linear-gradient(90deg, var(--accent-color), var(--main-color));
            height: 10px; /* مجرد شريط تزييني */
        }

        /* ====== الهيدر / القائمة ====== */
        header {
            width: 100%;
            background: var(--main-color);
            padding: 15px ;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: white;
            position: relative;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav a {
            font-size:20px;
            color: #fff;
            text-decoration: none;
            margin-left: 20px;
             transition: color 0.3s;
              font-weight: bold;

        }
        nav a.active {
            background: var( --accent-color);
    padding: 8px 15px;
    border-radius: 6px;
}

        nav a:hover {
            color: #AAA;
        }

        /* زر القائمة للموبايل */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            height: 3px;
            width: 25px;
            background: #fff;
            margin: 4px 0;
            border-radius: 2px;
            transition: all 0.3s;
            
        }
.services-container {
    padding: 40px 20px;
    text-align: center;
}

.page-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--main-color);
    font-weight: bold;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    padding: 20px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s;
    text-align: center;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 22px;
    color: var(--main-color);
    margin-bottom: 10px;
}

.card .short-desc {
    font-size: 16px;
    color: #666;
    min-height: 50px;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 6px;
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #884968;
}
.btn-demo {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    border-radius: 6px;
    background: var(--main-color);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-demo:hover {
    background: #50577a;
}

        @media (max-width: 768px) {
            nav {
                display: none;
                position: absolute;
                top: 60px;
                right: 0;
                background: var(--main-color);
                flex-direction: column;
                width: 100%;
            }

            nav.active {
                display: flex;
            }

            nav a {
                margin: 10px 0;
                padding: 10px 20px;
            }

            .menu-toggle {
                display: flex;
            }

            .logo-top span {
                font-size: 22px;
            }

            .logo-top img {
                height: 60px;
            }
        }

        /* ====== البطل (قسم البداية) ====== */
        .hero {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('');
            background-size: cover;
        }

        .hero h1 {
            font-size: 34px;
            color: var(--main-color);
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 18px;
            color: #555;
            margin-bottom: 25px;
        }

        .btn-main {
            background: var(--accent-color);
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 18px;
        }

        /* ====== الفوتر ====== */
        footer {
            text-align: center;
            padding: 10px;
            background: var( --main-color);
            color: #fff;
            font-size: 16px;
            position: sticky;
            top: 100%;
            width: 100%;
        }
    