*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', sans-serif;
}

:root {
    --primary: #4A90E2;
    --light-blue: #fff4f0;
    --dark: #1A1A1A;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}


.counter-section {
    background: white;
    border-radius: 15px;
    padding: 40px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
    max-width: 800px;
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: #4A90E2;
    transition: all 0.5s ease;
    display: block;

}

.counter-section small {
    font-size: 1.2rem !important;
    color: #4A90E2 !important;
    font-weight: 500;

}

.section-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    /* background: linear-gradient(to right, #0d6efd, #6f42c1); */
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    border-radius: 2px;
}

.text-primary {
    color: var(--primary) !important;
}

.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;
}