        /* إعدادات عامة */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #ffffff; /* لون الخلفية */
            height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* الشعار والقائمة */
        header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: #28a745; /* أخضر */
            padding: 10px;
            font-size:x-large;
        }

        .logo {
            height: 70px;
        }

        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }

        /* السلايدر */
        .slider-container {
            position: relative;
            width: 100%;
            height: 85vh; /* السلايدر بارتفاع 85% من الصفحة */
            overflow: hidden;
        }

        .slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .slide {
            min-width: 100vw;
            height: 100%;
        }

        .slide img {
            width: 100vw;
            height: 100%;
            object-fit: cover;
        }

        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 18px;
            background-color: rgba(0, 0, 0, 0.5);
            border-radius: 3px;
            transform: translateY(-50%);
        }

        .next {
            right: 0;
        }

        .prev {
            left: 0;
        }