        /* ===== الأنماط العامة ===== */
        :root {
            --primary-color: #e61c24;
            --bg-light: #f8f9fa;
        }
        body {
            background-color: #f8f9fa;
            font-family: 'Tahoma', 'Segoe UI', sans-serif;
            padding-bottom: 80px;
        }
.bg-one {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-network {
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    box-shadow: 0 4px 20px rgba(58,12,163,0.3);
}
.network-navbar {
    background: linear-gradient(135deg, #3a0ca3, #7209b7);
    box-shadow: 0 4px 20px rgba(58,12,163,0.3);
}
/* تنسيق موحد لأزرار الهيدر الزجاجية */
.header-btn {
    background: rgba(255, 255, 255, 0.15); /* شفافية خفيفة */
    border: 1px solid rgba(255, 255, 255, 0.3); /* إطار أبيض شفاف */
    color: white;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px); /* تأثير الضبابية */
    padding: 0;
}

/* تأثير التحويم والضغط */
.header-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.header-btn:active {
    transform: scale(0.92);
}

.header-btn i {
    font-size: 1.3rem !important;
}




        /* ===== رأس القسم ===== */
        
        
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.title-wrapper {
    display: flex;
    align-items: center;
}

.line-left {
    height: 35px;
    width: 4px;
    background-color: #e61e25;
    margin-left: 12px;
    border-radius: 2px;
}

.title-content h4 {
    font-weight: 800;
    font-size: 1.15rem;
    background: linear-gradient(90deg, #e61e25, #8e44ad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* تنسيق الوصف الصغير */
.subtitle {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px !important;
}

.arrow-icon {
    font-size: 1.4rem;
    color: #e61e25;
    transition: 0.3s;
}

.arrow-icon:hover {
    transform: translateX(-5px);
}
        

        /* ===== بطاقة المنتج الموحدة ===== */
        .product-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            transition: transform 0.25s ease, box-shadow 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.03);
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12);
            border-color: rgba(13, 110, 253, 0.15);
        }

        .product-img-container {
            position: relative;
            background: #f2f5fa;
            padding: 1.5rem 1rem;
            text-align: center;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .product-img-container img {
            max-width: 100%;
            max-height: 160px;
            object-fit: contain;
            transition: transform 0.4s ease;
        }
        .product-card:hover .product-img-container img {
            transform: scale(1.05);
        }

        .product-badge {
            position: absolute;
            top: 0px;
            right: 0px;
            background: #ff6b6b;
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 30px;
            letter-spacing: 0.3px;
            box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
            z-index: 2;
        }

        .card-body {
            padding: 1.25rem !important;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-body h6 {
            font-size: 1.1rem;
            color: #1a2b4a;
            font-weight: 700;
        }
        .card-body .text-muted {
            font-size: 0.85rem;
            color: #7a8a9e !important;
        }
        .card-body .text-muted i {
            color: #0d6efd;
        }

        .price-tag {
            font-size: 1.4rem;
            font-weight: 800;
            color: #0d6efd;
        }
        .price-tag small {
            font-weight: 400;
            color: #6c7a8e;
        }
        .badge.bg-light {
            background: #eef2f7 !important;
            color: #2c3e50 !important;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 30px;
            border: 1px solid #dce3ec;
        }

        .btn-buy {
            background: #0d6efd;
            color: #fff;
            border: none;
            border-radius: 12px;
            padding: 10px 0;
            font-weight: 600;
            transition: 0.25s;
            box-shadow: 0 6px 18px rgba(13, 110, 253, 0.25);
        }
        .btn-buy:hover {
            background: #0b5ed7;
            transform: scale(1.02);
            box-shadow: 0 8px 22px rgba(13, 110, 253, 0.35);
            color: #fff;
        }
        .btn-preview {
            background: #f1f4f9;
            color: #2c3e50;
            border: none;
            border-radius: 12px;
            width: 48px;
            transition: 0.25s;
        }
        .btn-preview:hover {
            background: #e2e8f0;
            color: #0d6efd;
            transform: scale(1.05);
        }

        /* ===== فئات الخدمات ===== */
        .service-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 16px;
            padding: 1rem 0.5rem;
            transition: 0.3s;
            text-align: center;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            border-color: #0d6efd;
        }
        .bg-icon-box {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 8px;
            color: #fff;
            font-size: 1.8rem;
        }
        .service-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: #1a2b4a;
        }

        /* ===== البانر ===== */
        .hero {
            background: linear-gradient(145deg, #29335f, #1a2346);
            border-radius: 24px;
            padding: 5px;
            border: 3px solid #ffc107;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin: 15px auto;
        }
        .poster {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 20px;
        }
        .poster-slider {
            width: 100%;
            height: 100%;
            position: relative;
            background: #1a2346;
        }
        .slide {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            animation: fadeEffect 12s infinite;
        }
        .slide:nth-child(1) { animation-delay: 0s; }
        .slide:nth-child(2) { animation-delay: 4s; }
        .slide:nth-child(3) { animation-delay: 8s; }
        @keyframes fadeEffect {
            0%, 25% { opacity: 1; }
            33%, 100% { opacity: 0; }
        }

        /* ===== شريط التنقل السفلي ===== */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a2346;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 8px 0;
            z-index: 1000;
            border-top: 2px solid #ffc107;
        }
        .bottom-nav .nav-item {
            color: #fff;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.7rem;
            transition: 0.2s;
            padding: 4px 8px;
            border-radius: 8px;
        }
        .bottom-nav .nav-item:hover {
            background: rgba(255,255,255,0.1);
        }
        .bottom-nav .center-btn {
            background: #ffc107;
            color: #1a2346;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: -20px;
            cursor: pointer;
            border: 3px solid #fff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: 0.2s;
        }
        .bottom-nav .center-btn:hover {
            transform: scale(1.05);
        }

        /* ===== استجابة ===== */
        @media (max-width: 576px) {
            .title-content h4 { font-size: 1.2rem; }
            .product-img-container { min-height: 150px; padding: 1rem; }
            .product-img-container img { max-height: 120px; }
            .price-tag { font-size: 1.2rem; }
        }
        
        
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #0d47a1;
  border-left: 2px solid #8dc63f;
  border-right: 2px solid #8dc63f;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;


}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}


        .product-img-container2 {
            position: relative;
            background: #f2f5fa;
            text-align: center;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
.product-card img {
  height: 200px;
  object-fit: cover;
}



.price {
  font-weight: bold;
  color: #0d6efd;
  font-size: 1.2rem;
}



.product-name {
    font-size: 18px;
    font-weight: 900;
    color: #0d47a1;
    margin-bottom: 8px;
}        
.product-desc {
    font-size: 14px;
    color: var(--sub);
    line-height: 1.7;
}
.product-price {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 2px 10px rgba(239,68,68,.4);
    animation: pulse 2s infinite;
    z-index: 2;
}        



.product-card22 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #0d47a1;
  border-left: 2px solid #8dc63f;
  border-right: 2px solid #8dc63f;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;


}

.product-card2 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px solid rgb(0, 73, 86);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
  border-color: rgb(0, 73, 86);
    opacity: 1;

}
        .product-img-container2 {
            position: relative;
            background: #f2f5fa;
            text-align: center;
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
.product-card2 img {
  height: 200px;
  object-fit: cover;
}

