        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f4f4f4;
            color: #333;
        }

        header {
            background-color: #000;
            color: #fff;
            padding: 20px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
.dropdown {
    position: relative;
    display: inline-block;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 140px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    z-index: 1000;
    border-radius: 5px;
    right: 0;
    overflow-y: auto;
    max-height: 300px;
}
.dropdown-content a {
    color: white !important;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-bottom: 1px solid #333;
    text-align: right;
  
}
.dropdown-content a:hover { background-color: #007bff; }
.dropdown:hover .dropdown-content { display: block; }



.whatsapp-float-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}
.whatsapp-float-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-float-btn svg {
        width: 24px !important;
        height: 24px !important;
    }
}

footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px; /* المسافة بين الأيقونات */
}

.social-icons span {
    font-size: 14px;
    color: #ccc;
}

.social-icons a {
    color: #fff;
    font-size: 20px; /* حجم الأيقونات */
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* جعل الخلفية دائرية عند الـ hover */
    background: rgba(255, 255, 255, 0.1);
}

/* ألوان البراند عند مرور الماوس */
.social-icons a:hover {
    transform: translateY(-3px); 
}

.social-icons a[title="Facebook"]{
    background-color: #1877F2;
}

.social-icons a[title="TikTok"]{
    background-color: #000000;
    box-shadow: 2px 2px 5px #ff0050, -2px -2px 5px #00f2ea; 
}

.social-icons a[title="WhatsApp"]{
    background-color: #25D366;
}
    header {
        flex-direction: column;
        padding: 15px;
    }
    nav {
        margin-top: 15px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .product-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; 
        gap: 10px !important;
        padding: 10px;
    }
    .product-card img { height: 140px; }
    .product-card h3 { font-size: 0.9rem; }


        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #ff4757; 
        }
        span.white {
            color: #f4f4f4;
        }
        span.blue {
            color: blue;
        }

        nav a {
            color: #fff;
            text-decoration: none;
            margin-right: 20px;
            transition: 0.3s;
        }

        nav a i {
    margin-left: 5px; /* مسافة بين الأيقونة والنص */
    vertical-align: middle;
}

/* لون أيقونة الواتساب الأخضر عند الوقوف عليها */
nav a:hover .fa-whatsapp {
    color: #25D366;
}

/* لون أيقونة الموقع الأحمر عند الوقوف عليها */
nav a:hover .fa-map-marker-alt {
    color: #FF0000;
}

        nav a:hover {
            color: #ff4757;
        }
        nav a img {
            size: 1px;
        }

        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                        url('haed-home.avif'); 
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .cta-button {
            background-color: #ff4757;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: 0.3s;
        }

        .cta-button:hover {
            background-color: #e84118;
        }

        /* قسم المنتجات (Products) */
        .products {
            padding: 50px 10%;
            text-align: center;
        }

        .products h2 {
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: #fff;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-card img {
            max-width: 100%;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .product-card h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .price {
            color: #ff4757;
            font-weight: bold;
            font-size: 1.1rem;
        }

       footer {
    background-color: #1a1a1a; 
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px; /* المسافة بين الأيقونات */
}

.social-icons span {
    font-size: 14px;
    color: #ccc;
}

.social-icons a {
    color: #fff;
    font-size: 20px; /* حجم الأيقونات */
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* جعل الخلفية دائرية عند الـ hover */
    background: rgba(255, 255, 255, 0.1);
}

/* ألوان البراند عند مرور الماوس */
.social-icons a:hover {
    transform: translateY(-3px); 
}

.social-icons a[title="Facebook"]{
    background-color: #1877F2;
}

.social-icons a[title="TikTok"]{
    background-color: #000000;
    box-shadow: 2px 2px 5px #ff0050, -2px -2px 5px #00f2ea; 
}

.social-icons a[title="WhatsApp"]{
    background-color: #25D366;
}