     html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: 'Droid Arabic Kufi', 'Segoe UI', sans-serif;
            background-color: #FFFFF0; //FDF5E6
            color: white;
            overflow-x: hidden;
        }

        .news {
            overflow: hidden;
            direction: ltr;
            background: #FFFFF0;
            height: auto;
            position: relative;
            padding: 0;
            margin-top: 0;
            margin-bottom: 0;
        }

        .news-slider {
            display: flex;
            width: max-content;
            animation: slide 30s linear infinite;
        }

        .news-slider img {
            width: auto;
            height: 200px;
            flex-shrink: 0;
            object-fit: contain;
            object-position: center top;
            margin: 0 10px 0px 0px;
            padding: 0;
            padding-bottom: 0;
            border: none;
            gap: 0;
            background: #FFFFF0;
            padding-top: 0;
        }
		.news-slider:hover{
			animation-play-state: paused;
		}

        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .news-label {
            display: inline-block;
            background-color: #594CC4; //594CC4
            color: white;
            width: 120px;
            padding: 7px 7px;
            padding-left: 20px;
            border-radius: 15px;
            border: 2px solid white;
            text-align: center;
            font-size: 16px;
            font-weight: bold;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-top: 0;
            margin-bottom: 0;

        }


        .header {
            background-color: #FFFFF0;
            display: flex;
            position: relative;
            justify-content: center;
            align-items: center;
            padding: 0px 20px;
            color: black;
            width: 100%;
            box-sizing: border-box;
            margin-bottom: 0;
            margin-top: 0;
        }

        .header h1 {
            font-size: 20px;
            margin: 0;
            text-align: center;
            color: black;
            width: 100%;
            padding: 0px 10px 10px 0px;
        }

        .menu-toggle {
            cursor: pointer;
            width: 30px;
            height: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            z-index: 1000;
            padding: 0px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: #FFFFF0;
            border: none;

        }

        .menu-toggle span {
            height: 4px;
            background: black;
            border-radius: 2px;
            transition: 0.3s;
        }

        .side-menu {
            position: fixed;
            top: 0;
            right: 0 !important;
            left: auto !important;
            width: 30%;
            height: 100%;
            background-color: #594CC4;
            padding: 60px 20px 20px;
            box-shadow: -4px 0 12px rgba(0,0,0,0.5);
            transform: translateX(100%);
            transition: transform 0.4s ease;
            z-index: 1001;
        }

        .side-menu.active {
            transform: translateX(0);
        }

        .side-menu a {
            display: block;
            color: white;
            text-decoration: none;
            margin: 20px 0;
            font-size: 20px;
            border-bottom: 1px solid rgba(255,255,255,0.3);
            padding-bottom: 5px;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            left: 15px;
            background:  #594CC4;
            border: 2px solid white;
            color: white;
            padding: 5px 10px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 5px;
        }

        @media (max-width: 768px) {
        .menu-toggle {
          width: 25px;
          height: 20px;
          }
         .menu-toggle span {
         height: 3px;
         }
         }

        .safi-icon {
            text-align: center;
            padding: 15px 0px 0px 0px;
            background-color: #FFFFF0;
            margin-bottom: 0px;
        }

        .safi-icon img {
            width: 200px;
            height: auto;
            border-radius: 10px;
           // box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            background-color: #FFFFF0;
            padding: 5px 5px 5px 0px;
            margin-bottom: 0px;

        }

        .safi-icon img:hover {
            transform: scale(1.05);
        }

        .safi-icon hr {
            margin-top: 0px; //20
            border: none;
            height: 2px;
            background-color: #FFFFF0;
            width: 60%;
            margin-left: auto;
            margin-right: auto;
            margin-top: 0;
            margin-bottom: 0;
        }
        #hikmah{
        border-style: dotted;
        border-width: 0.1px;
        border-radius: 15px;
        width: 80%;
        margin: 0 auto;

        }

        .intro {
            padding: 60px 20px;
            text-align: center;
            background-color: #FFFFF0;
            color: black;
            border-top: 3px solid #594CC4;
            margin-top: 0;
            margin-bottom: 0px;
            padding-top: 2px;
        }

        .intro h3 {
            margin-top: 0;
            font-size: 14px;
        }

        .intro p {
            font-size: 18px;
            line-height: 1.8;
        }

        .products, #features {
            background-color: #FFFFF0;
            padding: 40px 20px;
            font-size: 16px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .product {
            background-color: #FFFFF0;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
        }

        .product img {
            width: 100%;
            border-radius: 8px;
        }

        .product h3 {
            margin: 10px 0 5px;
        }
        #contact{
        border-style: solid;
         border-color: #f1f1f1;
         border-radius: 40px;
         margin: 0 auto;
         width: 90%;
         color: white;

        }

        .footers {
            background-color: #594CC4;
			
            padding: 0;
            text-align: center;
        }


@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
    }

    .header h1 {
        font-size: 20px;
        padding: 0 40px;
    }

    .menu-toggle {
        right: 15px;
        width: 25px;
        height: 20px;
        padding: 8px;
    }

    .news-label {
        top: 10px;
        right: 10px;
        padding: 6px 15px;
        color: white;
    }

    .news-label h2 {
        font-size: 18px;
    }

    .intro h2 {
        font-size: 24px;
    }

    .intro p {
        font-size: 16px;
    }

    .product h3 {
        font-size: 16px;
    }

    .product p {
        font-size: 15px;
    }

    .features-list {
        direction: rtl;
        text-align: right;
        list-style-position: inside;
        padding-right: 20px;
        font-size: 16px;

    }

    .side-menu {
        width: 80%;
    }

    .news-ticker {
        height: 60px;
    }

    .news-track img {
        height: 80px;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        left: auto !important;
        right: 20px !important;
    }

    .header h1 {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .product p {
        font-size: 14px;
    }

    .footer {
        font-size: 14px;
    }
}

ul {
    text-align: right;
    direction: rtl;
    padding-right: 20px;
}
li{
margin: 8px;
}
/* تعديل التنسيق للتعليقات */
.comments-section {
    margin-top: 5px;
    direction: rtl;
    text-align: right;
}

/* تنسيق التعليق */
.comment {
    background-color: #ffffff;
    border: 2px solid #594CC4;
    padding: 0 15px;
    width: 85%;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

/* تعديل تنسيق النص في أول عنصر داخل التعليق */
.comment p:first-child {
    margin-bottom: 8px;
    font-weight: bold;
    color: #000;
    text-align: right;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comment p {
color: black;
}

/* تخصيص الرسالة (message) */
#message {
    direction: rtl;
    border: 1px solid #d6e9c6;
    animation: fadeInOut 5s ease-in-out;
}

/* التأثيرات عند إدخال الرسالة */
@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    10% { opacity: 1; transform: translateY(0); }
    90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}

/* تنسيق الأيقونة */
.user-icon {
    width: 32px;
    height: 32px;
    background: #0077b6;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    margin-left: 8px;
	margin-top: 0;
	margin-bottom: 0; 
    vertical-align: middle;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.user-icon::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
}

.user-icon::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    border-radius: 0 0 10px 10px;
    background: white;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

/* تنسيق الأيقونات حسب نوع التعليق */
.comment:nth-child(odd) .user-icon {
    background: #0077b6; /* أزرق */
}

.comment:nth-child(even) .user-icon {
    background: #28a745; /* أخضر */
}

/* تأثير عند تحريك الأيقونة */
.user-icon {
    transition: transform 0.3s ease;
}

.user-icon:hover {
    transform: scale(1.1) rotate(8deg);
    cursor: pointer;
}

/* تنسيق صندوق إضافة التعليق */
.comment-form {
    background-color: #f1f1f1;
    padding: 25px;
    margin: 40px auto 0;
    border-radius: 10px;

    width: 60%;
    direction: rtl;
    text-align: right;
    border: 2px solid #594CC4;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.comment-form h3 {
    margin-bottom: 15px;
    color: #003f3f;
}

.comment-form label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    box-sizing: border-box;
}

.comment-form button {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #007a7a;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.comment-form button:hover {
    background-color: #005f5f;
}

/* Divider */
.divider {
    box-shadow: none;
    border: none;
    background-top: #FFF9F1;
    border-top: 2px solid #444;
    margin: 4px 1px;
}

/* تنسيق الفوتر */
.footers h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 10px 0 5px;
}

.footers p {
    font-size: 11px;
}
.whatsapp .icon { color: #25D366; }
.email .icon { color: #ea4335; }

.map-container{
width: 90%;
margin: 20px auto;
border: 1px dotted blue;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 10px rgba(180,0,0,0.2);
}

.whatsapp-float, .phone-float {
position: fixed;
bottom: 20px;
z-index: 9999;
}
.whatsapp-float { left: 20px; }
.phone-float { right: 20px; }
.whatsapp-float img, .phone-float img{
width: 90px;
height: 90px;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
transition: transform 0.3s ease;
}
.whatsapp-float img:hover, .phone-float img:hover{
transform: scale(1.1);
}

#information{
	color: #0077b6;
}
#ourAddress{
	font-size: 20px;
	text-align: center;
	font-weight: bold;
}
.copyrights {
	background-color: #111;
	color: #fff;
	text-align: center;
	padding: 15px 0;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	letter-spacing: 0.5px;
	border-top: 1px solid #333;
	margin-top: 0px;
}
.copyrights p {
	margin: 0;
}