        .erp-card {
            position: relative;
            background: var(--bg-primary);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-xl);
            padding: var(--spacing-xl);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            cursor: pointer;
        }

        .erp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
            transition: left 0.6s;
        }

        .erp-card:hover::before {
            left: 100%;
        }

        .erp-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border-color: var(--accent-primary);
        }

        .icon-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto var(--spacing-lg);
            background: var(--brand-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
        }

        .erp-card:hover .icon-wrapper {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 20px 40px rgba(239, 68, 68, 0.5);
        }

        .icon-wrapper::after {
            content: '';
            position: absolute;
            width: 120%;
            height: 120%;
            border: 2px solid var(--accent-primary);
            border-radius: 20px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .erp-card:hover .icon-wrapper::after {
            opacity: 0.5;
            transform: scale(1.1);
        }

        .erp-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--brand-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: var(--spacing-md);
            transition: all 0.3s ease;
        }

        .erp-card:hover h3 {
            letter-spacing: 1px;
        }

        .erp-card p {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 1rem;
            margin-bottom: 0;
        }

        .featured-erp {
            background: var(--brand-gradient);
            border: none;
            transform: scale(1.05);
        }

        .featured-erp h3,
        .featured-erp p {
            color: white;
            -webkit-text-fill-color: white;
        }

        .featured-erp .icon-wrapper {
            background: rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .new-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            animation: bounceIn 1s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        @keyframes bounceIn {
            0% {
                opacity: 0;
                transform: scale(0.3);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--spacing-xl);
            align-items: stretch;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .featured-erp {
                transform: scale(1);
            }
        }
        .services .icon-wrapper i {
    font-size: 36px;
    color: #dbe2e1; 
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px; 
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 6px 15px rgba(37,211,102,0.4));
    z-index: 9999;
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.ripple, .ripple-delay {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37,211,102,0.25);
    animation: ripple 2.5s ease-out infinite;
    z-index: 1;
}

.ripple-delay {
    animation-delay: 1.25s;
}

.whatsapp-float:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 10px 25px rgba(37,211,102,0.6));
}

.whatsapp-float:hover .whatsapp-icon {
    animation: shake 0.6s ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

@media (max-width: 768px) {
    .whatsapp-float { width: 50px; height: 50px; bottom: 15px; right: 15px; }
}


/* Google Translate Custom Styling */
#google_translate_container {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

#google_translate_element select {
    background: #ffffff10;
    color: var(--text-color);
    border: 1px solid #ffffff20;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}
/* إخفاء شريط Google Translate العلوي */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
} 
body {
    top: 0 !important; /* إزالة أي تحريك للصفحة بسبب الشريط */
}

/* إخفاء شعار Google المزعج */
.goog-logo-link {
    display: none !important;
}

.goog-te-gadget img {
    display: none !important;
}
/* إخفاء عناصر Google المزعجة */
.goog-logo-link,
.goog-te-gadget span,
.goog-te-banner-frame,
.goog-te-gadget-simple img {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}
#google_translate_element {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
#google_translate_container {
    display: flex !important;
    align-items: center !important;
    margin-left: 12px;
}

#google_translate_element {
    display: inline-block !important;
}

.goog-te-gadget {
    font-size: 0 !important;
}

#google_translate_element select {
    background: #ffffff10;
    color: var(--text-color);
    border: 1px solid #ffffff30;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
}
#google_translate_element {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
