
.animation-delay-2000 {
    animation-delay: 2s;
}

/* تأثيرات التمرير */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* تأثيرات عند التمرير فوق العناصر */
.hover-lift {
    transition: transform 0.4s, box-shadow 0.4s;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* تأثيرات النص */
.text-gradient {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
}

/* تأثيرات الأزرار */
.btn-primary {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
}

/* شريط التقدم */
.progress-bar {
    height: 4px;
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    width: 0%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: width 0.3s;
}

/* تأثيرات خاصة للبطاقات */
.card-hover {
    transition: all 0.4s ease;
}

.card-hover:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* تأثيرات الظل */
.shadow-custom {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* تأثيرات خاصة للصور */
.image-hover {
    transition: transform 0.5s ease;
}

.image-hover:hover {
    transform: scale(1.05);
}

/* تأثيرات خاصة للشريط الجانبي */
.sidebar-item {
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background-color: rgba(6, 182, 212, 0.1);
    border-right: 4px solid #06b6d4;
}

/* تأثيرات خاصة للشعار */
.logo-text {
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    /* -webkit-background-clip: text; */
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* تأثيرات خاصة للعناوين */
.heading-underline {
    position: relative;
    display: inline-block;
}

.heading-underline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(to right, #06b6d4, #3b82f6);
    border-radius: 2px;
}

/* تأثيرات خاصة للأيقونات */
.icon-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* تأثيرات خاصة للخلفيات */
.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%2306b6d4' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}