*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
}

:root {
    --primary: #4A90E2;
    --light-blue: #F0F8FF;
    --dark: #1A1A1A;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgb(255, 255, 255);
}

.badge-hover:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}


.image-hover {
    transition: all 0.5s ease;
}

.image-container:hover .image-hover {
    transform: scale(1.05);
}

.floating-tag {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}



 .card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
        }
        
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }
        
        .card-img-top {
            height: 220px;
            object-fit: cover;
        }





.footer-link {
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--primary) !important;
}

.social-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icon:hover {
    color: var(--primary) !important;
    transform: translateY(-3px);
}

.title-animate {
    background: linear-gradient(45deg, var(--primary), #357ABD);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.counter {
    font-size: 2.5rem;
}


.social-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle:hover {
    transform: translateY(-3px);
    color: white !important;
    transition: 0.2s;
}

/* فيسبوك - أزرق */
.social-circle.facebook:hover {
    background: #1877F2;
}

/* تويتر - أزرق فاتح */
.social-circle.twitter:hover {
    background: #1DA1F2;
}

/* إنستجرام - موف (بنفسجي) */
.social-circle.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* واتساب - أخضر */
.social-circle.whatsapp:hover {
    background: #25D366;
}

.social-links a {
    transition: all 0.3s ease;
}

.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4A90E2 !important;
}

.product-hidden {
    display: none !important;
}

.product-visible {
    display: block !important;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

     
