
        * {
    font-family: 'Cairo', 'Tajawal', sans-serif;
}

body {
    font-family: 'Cairo', sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
        /* navbar */
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed !important;
            top: 0 !important;
            width: 100% !important;
            z-index: 1000 !important;
        }
        
 .bg-primary-bl {
    --bs-bg-opacity: 1;
        background-color: #0a1e3a !important;
}
        /* المنتجات */
        .product-card {
            transition: transform 0.3s;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        /* الفوتر */
        .footer {
            background-color: #0a1e3a;
            color: white;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            transition: 0.3s;
            text-decoration: none;
            color: white;
        }
        
        .social-icon:hover {
            background-color: #0a1e3a;
            transform: translateY(-3px);
            color: white;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            text-align: center;
            font-weight: 700;
            color: #0a1e3a !important;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #c17c34;
            border-radius: 2px;
        }
        
        /* ========== تنسيق السلايدر ========== */
        .carousel-item {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        
        .slide-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: rgba(0, 0, 0, 0.5);
        }
        
        .carousel-item h1 {
            font-size: 3rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 1rem;
        }
        
        .carousel-item .lead {
            font-size: 1.3rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            margin-bottom: 2rem;
        }
        
        .carousel-control-prev,
        .carousel-control-next {
            width: 10%;
            opacity: 0.8;
            z-index: 10;
        }
        
        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            opacity: 1;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
        /* ========== المسافات العلوية حسب الصفحة ========== */
        .home-main {
            margin-top: 0;
        }
        
        .home-main .carousel,
        .home-main .carousel-inner,
        .home-main .carousel-item {
            height: 100vh !important;
            min-height: 100vh !important;
        }
        
        .admin-main {
            margin-top: 76px;
        }
        
        .default-main {
            margin-top: 76px;
        }
        
        @media (max-width: 768px) {
            .carousel-item h1 {
                font-size: 1.8rem;
            }
            .carousel-item .lead {
                font-size: 1rem;
            }
            .home-main .carousel,
            .home-main .carousel-inner,
            .home-main .carousel-item {
                height: 400px !important;
                min-height: 400px !important;
            }
        }
        
        [dir="rtl"] .ms-2 {
            margin-left: 0.5rem !important;
            margin-right: 0 !important;
        }
        
        [dir="rtl"] .me-2 {
            margin-right: 0.5rem !important;
            margin-left: 0 !important;
        }
        
        .footer a {
            transition: 0.3s;
        }
        
        .footer a:hover {
            color: #0a1e3a !important;
        }

        /* تنسيق الشعار */
.navbar-brand img {
    transition: transform 0.3s;
    max-height: 45px;
    width: auto;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* للشاشات الصغيرة */
@media (max-width: 768px) {
    .navbar-brand img {
        max-height: 35px;
    }
}
