/* Custom Cursor */
.cursor-dot {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid black;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s, background 0.3s, border-color 0.3s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

/* Logo stays as is (no invert) */
.logo-image {
    filter: none;
}

/* Particles background (always dark) */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
}

/* Mac window entrance animation */
.mac-window {
    animation: floatIn 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mac buttons hover effects */
.mac-btn {
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mac-btn:hover {
    transform: scale(1.15);
    filter: brightness(1.1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Glow effect on window hover */
.mac-window:hover {
    box-shadow: 0 30px 60px -15px rgba(139, 92, 246, 0.4);
    transition: box-shadow 0.4s;
}

/* تحسينات النصوص العامة */
h1, p, span:not(.text-transparent) {
    color: #e5e7eb; /* رمادي فاتح جداً */
}

.text-gray-700 {
    color: #d1d5db !important;
}

.text-gray-600 {
    color: #9ca3af !important;
}

/* أيقونات الإحصائيات */
.fa-shield-alt,
.fa-shield-halbed {
    color: #c4b5fd !important; /* أرجواني فاتح */
}

.fa-code {
    color: #93c5fd !important; /* أزرق فاتح */
}

.fa-server {
    color: #6ee7b7 !important; /* أخضر فاتح */
}

/* نافذة Mac */
.mac-window {
    background: rgba(10, 10, 15, 0.6) !important;
    backdrop-filter: blur(12px);
    border-color: rgba(75, 85, 99, 0.3);
}

.mac-window .text-gray-800 {
    color: #f3f4f6 !important;
}

.mac-window .border-b {
    border-color: rgba(75, 85, 99, 0.3);
}

/* ألوان الأزرار */
.border-gray-300 {
    border-color: #4b5563 !important;
}

.hover\:bg-gray-100:hover {
    background-color: #374151 !important;
}

/* مؤشر التمرير */
.animate-bounce i {
    color: #9ca3af !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #2d3748;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* خلفية الصفحة الرئيسية */
body {
    background-color: #0a0a0f;
}

/* Particles background - بدون خلفية إضافية */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    /* إزالة background */
}

/* Trusted By Section - صور بدل الأيقونات */
.trusted-by-section {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

/* الحاوية الرئيسية للصورة */
.trusted-item {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* تنسيق الصورة */
.trusted-image {
    filter: grayscale(1) brightness(1.2); /* أبيض وأسود مع سطوع طفيف */
    transition: filter 0.3s ease, transform 0.3s ease;
    width: 100px; /* حجم ثابت للعرض */
    height: auto;
    max-height: 60px; /* توحيد الارتفاع */
    object-fit: contain;
}

@media (min-width: 768px) {
    .trusted-image {
        width: 120px;
        max-height: 70px;
    }
}

.trusted-item:hover .trusted-image {
    filter: grayscale(0) drop-shadow(0 0 10px rgba(139, 92, 246, 0.8));
    transform: scale(1.1);
}

/* Custom Right Click Menu */
.custom-context-menu {
    position: fixed;
    z-index: 9999;
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
    min-width: 180px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.custom-context-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.custom-context-menu li {
    padding: 8px 16px;
    color: #e0e0e0;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-context-menu li i {
    width: 18px;
    text-align: center;
    color: #a78bfa; /* purple-400 */
}

.custom-context-menu li:hover {
    background: rgba(139, 92, 246, 0.3);
    color: white;
}

.custom-context-menu li.separator {
    height: 1px;
    padding: 0;
    margin: 6px 0;
    background: rgba(255, 255, 255, 0.1);
    cursor: default;
}

.custom-context-menu li.separator:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hide menu */
.custom-context-menu.hidden {
    display: none;
}

/* ===== Services Section - تعزيز الظهور ===== */
.services-section {
    background-color: transparent;
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.service-card {
    background: #1e1e2a; /* لون أفتح قليلاً */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    backdrop-filter: none;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #a78bfa;
    box-shadow: 0 35px 50px -15px rgba(139, 92, 246, 0.5);
    background: #252535;
}

/* أيقونة الخدمة */
.service-icon {
    width: 70px;
    height: 70px;
    background: #2a2a3a;
    border: 2px solid #3a3a4a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 34px;
    color: #c4b5fd; /* أفتح */
}

.service-card:hover .service-icon {
    border-color: #a78bfa;
    background: #35354a;
}

.service-card:hover .service-icon i {
    color: #e0d7ff;
}

/* عنوان الخدمة */
.service-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* الإحصائية */
.service-stats {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1rem;
    background: #2a2a3a;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    width: fit-content;
    border: 1px solid #3a3a4a;
}

.stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: #c4b5fd;
}

.stat-label {
    font-size: 0.85rem;
    color: #b0b0c0;
    text-transform: uppercase;
}

/* وصف الخدمة */
.service-desc {
    color: #c0c0d0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    flex-grow: 1;
}

/* زر Learn More */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: transparent;
    border: 1px solid #4a4a5a;
    border-radius: 40px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    width: fit-content;
}

.service-btn i {
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.service-btn:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    gap: 0.8rem;
}

.service-btn:hover i {
    transform: translateX(4px);
}

/* ===== Industries Section - نسخة أيقونات متحركة ===== */
.industries-section {
    background-color: transparent;
    position: relative;
}

.industry-card {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 28px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.industry-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 50px -15px rgba(139, 92, 246, 0.5);
}

.industry-bg {
    width: 100%;
    height: 100%;
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-card:hover .industry-bg {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.4), rgba(59, 130, 246, 0.4));
}

.industry-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.8rem;
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.industry-card:hover .industry-content {
    transform: translateY(-8px);
}

.industry-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.industry-icon-large i {
    font-size: 48px;
    color: white;
    transition: transform 0.4s ease, color 0.4s ease;
}

.industry-card:hover .industry-icon-large {
    background: #8b5cf6;
    border-color: rgba(255, 255, 255, 0.5);
    animation: none; /* إيقاف الطفو عند التحويم */
    transform: scale(1.1) rotate(5deg);
}

.industry-card:hover .industry-icon-large i {
    transform: scale(1.1);
    color: #ffffff;
}

.industry-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.industry-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 90%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-description {
    opacity: 1;
}

.industry-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transition: gap 0.3s ease, border-bottom-color 0.3s ease;
}

.industry-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.industry-btn:hover {
    gap: 0.8rem;
    border-bottom-color: #8b5cf6;
}

.industry-btn:hover i {
    transform: translateX(4px);
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-color: transparent;
    position: relative;
}

.testimonial-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 2rem 1.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 30px 50px -15px rgba(139, 92, 246, 0.4);
    background: rgba(30, 30, 40, 0.8);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(139, 92, 246, 0.2);
    transition: color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover .quote-icon {
    color: rgba(139, 92, 246, 0.4);
    transform: scale(1.1);
}

.testimonial-text {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-right: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #8b5cf6;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: #a78bfa;
    transform: scale(1.05);
}

.author-info h4 {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #9ca3af;
    font-size: 0.85rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: #fbbf24; /* لون النجوم ذهبي */
    font-size: 1rem;
}

.testimonial-rating i {
    transition: transform 0.2s ease;
}

.testimonial-card:hover .testimonial-rating i {
    transform: scale(1.1);
}

/* ===== Why Choose Section - Experience Matrix ===== */
.why-choose-section {
    background-color: transparent;
    position: relative;
}

/* خلفية الشبكة */
.grid-background {
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* الخطوط المتوهجة */
.glow-line-horizontal, .glow-line-vertical {
    animation: glowPulse 4s ease-in-out infinite;
}

.glow-line-vertical {
    animation: glowPulse 4s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

/* المصفوفة */
.experience-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

@media (min-width: 768px) {
    .experience-matrix {
        grid-template-columns: repeat(4, 1fr);
    }
}

.matrix-item {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.matrix-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #8b5cf6;
    box-shadow: 0 30px 50px -15px rgba(139, 92, 246, 0.5);
    background: rgba(30, 30, 40, 0.9);
}

/* تأثير التوهج الخلفي */
.matrix-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.matrix-item:hover::before {
    opacity: 1;
}

/* الأيقونة */
.matrix-icon {
    width: 70px;
    height: 70px;
    background: #2a2a3a;
    border: 2px solid #3a3a4a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.matrix-icon i {
    font-size: 34px;
    color: #c4b5fd;
    transition: color 0.3s ease, transform 0.3s ease;
}

.matrix-item:hover .matrix-icon {
    border-color: #a78bfa;
    background: #35354a;
    transform: scale(1.1) rotate(5deg);
}

.matrix-item:hover .matrix-icon i {
    color: #e0d7ff;
    transform: scale(1.1);
}

/* العنوان */
.matrix-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

/* الوصف */
.matrix-description {
    color: #b0b0c0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* الإحصائية */
.matrix-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #2a2a3a;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid #3a3a4a;
    margin-bottom: 1rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.matrix-stat .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c4b5fd;
    line-height: 1.2;
}

.matrix-stat .stat-label {
    font-size: 0.8rem;
    color: #a0a0b0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* المحتوى الإضافي (يظهر عند التحويم) */
.matrix-hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    width: 100%;
    position: relative;
    z-index: 1;
}

.matrix-item:hover .matrix-hover-content {
    max-height: 150px;
    opacity: 1;
}

.matrix-hover-content ul {
    margin-top: 0.5rem;
    padding-left: 0;
}

.matrix-hover-content li {
    color: #9ca3af;
    font-size: 0.8rem;
    line-height: 1.6;
    list-style: none;
}

/* ===== Dropdown Menu ===== */
.services-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-menu {
    transform-origin: top center;
}

.services-dropdown:hover .dropdown-menu,
.services-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.services-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
}

/* تجنب اختفاء القائمة عند التمرير السريع */
.dropdown-menu {
    pointer-events: none;
}

.services-dropdown:hover .dropdown-menu,
.services-dropdown:focus-within .dropdown-menu {
    pointer-events: auto;
}

/* ===== Team Section ===== */
.team-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.5);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
    box-shadow: 0 30px 45px -15px rgba(139,92,246,0.4);
}

.team-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.team-role {
    color: #a78bfa;
    font-size: 0.9rem;
}

/* Team wide card */
.team-wide-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 20px 30px -15px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.team-wide-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 30px 50px -15px rgba(139,92,246,0.4);
    transform: translateY(-5px);
}

/* Team avatar placeholders */
.team-avatar-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a1b3d, #1a1a2e);
    border: 2px solid #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.team-avatar-placeholder:hover {
    transform: scale(1.1) rotate(5deg);
    border-color: #a78bfa;
    background: #35354a;
}

/* Floating icons */
.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(139,92,246,0.2);
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .team-wide-card .flex-col {
        gap: 2rem;
    }
}

/* ===== Team Section ===== */
.team-founder-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, border-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-founder-card:hover {
    transform: translateY(-6px);
    border-color: #8b5cf6;
    box-shadow: 0 30px 45px -15px rgba(139, 92, 246, 0.4);
}

.team-founder-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.team-founder-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}

.team-founder-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.team-founder-info p {
    color: #c4b5fd;
    font-size: 0.95rem;
}

/* كرت الفريق الكبير */
.team-staff-card {
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 2.5rem 2rem;
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.7);
    transition: all 0.4s ease;
}

.team-staff-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 30px 50px -15px rgba(139, 92, 246, 0.5);
    transform: translateY(-5px);
}

.staff-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a1b3d, #1a1a2e);
    border: 2px solid #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.staff-icon:hover {
    transform: scale(1.1);
    border-color: #a78bfa;
    background: #35354a;
}

/* ===== Footer Section ===== */
.footer-section {
    background-color: #0a0a0f;
}

.footer-link {
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* تم التعديل إلى الأبيض */
    font-size: 1.2rem;
    transition: all 0.3s ease;
}
.footer-social-icon:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 10px 20px -5px rgba(139, 92, 246, 0.5);
}


.service-card .absolute.inset-0 {
    pointer-events: none;
}