/* إعدادات المتغيرات والألوان */
:root {
    --primary: #4361ee;
    --secondary: #3f37c9;
    --accent: #4cc9f0;
    --dark: #0f172a;
    --text-main: #334155;
    --white: #ffffff;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Cairo', sans-serif;
    direction: rtl;
    color: var(--text-main);
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- Top Header --- */
.top-header {
    background: var(--dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info { display: flex; gap: 20px; }
.info-item { display: flex; align-items: center; gap: 8px; }
.info-item i { color: var(--accent); }
.hotline-num { color: var(--accent); font-weight: 900; text-decoration: none; font-size: 15px; }

.top-social { display: flex; gap: 15px; }
.top-social a { color: #cbd5e1; transition: var(--transition); }
.top-social a:hover { color: var(--accent); transform: translateY(-2px); }

/* --- Main Header --- */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 85px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.logo a { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.logo img { height: 45px; }
.logo-text { font-size: 24px; font-weight: 900; color: var(--dark); letter-spacing: -1px; }
.logo-text .dot { color: var(--primary); }

/* Navigation Links */
.nav-links { display: flex; gap: 30px; }
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; width: 0; height: 3px;
    background: var(--primary);
    border-radius: 50px;
    transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Buttons */
.desktop-auth { display: flex; align-items: center; gap: 20px; }
.login-link { font-weight: 700; color: var(--dark); text-decoration: none; }
.login-link:hover { color: var(--primary); }

.btn-signup {
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.shadow-btn { box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2); }
.shadow-btn:hover { background: var(--secondary); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(67, 97, 238, 0.3); }

/* --- Mobile Menu & Overlay --- */
.hamburger { display: none; cursor: pointer; font-size: 24px; color: var(--dark); }
.mobile-nav-header, .mobile-auth-btns { display: none; }

.menu-overlay {
    position: fixed;
    top: 0; right: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 1050;
    opacity: 0; visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active { opacity: 1; visibility: visible; }

/* --- Responsive (الشاشات أقل من 992px) --- */
@media (max-width: 992px) {
    .hide-mobile, .desktop-auth { display: none; }
    .hamburger { display: block; }

    .nav-menu {
        position: fixed;
        top: 0; right: -320px; width: 300px; height: 100vh;
        background: var(--white);
        z-index: 1100;
        padding: 30px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        display: flex;
        flex-direction: column;
    }

    .nav-menu.active { right: 0; }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
    .mobile-nav-header span { font-weight: 900; font-size: 20px; }
    .close-btn { font-size: 25px; cursor: pointer; color: #ff4d4d; }

    .nav-links { flex-direction: column; gap: 0; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
        border-bottom: 1px solid #f1f5f9;
    }
    .nav-links a::after { display: none; }

    .mobile-auth-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: auto; /* دفع الأزرار للأسفل */
    }
    .btn-login {
        text-align: center;
        padding: 12px;
        border: 2px solid var(--primary);
        border-radius: 10px;
        color: var(--primary);
        font-weight: 700;
        text-decoration: none;
    }
    .btn-signup { text-align: center; }
}

@media (max-width: 480px) {
    .main-header { height: 70px; }
    .logo img { height: 35px; }
    .logo-text { font-size: 20px; }
}

/*hero secion start*/
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;900&display=swap');

:root {
    --primary-blue: #00d2ff;
    --deep-dark: #020617;
    --text-white: #ffffff;
    --text-dim: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Cairo', sans-serif; }

body { background: var(--deep-dark); color: var(--text-white); overflow-x: hidden; }

/* تأثير الخلفية المتحركة (Trend 2025) */
.ultra-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    direction: ltr; /* الترتيب العالمي: يسار صورة - يمين نص */
}

.animated-gradient {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    top: -10%; left: -5%;
    filter: blur(80px);
    animation: floatingGlow 8s infinite alternate;
}

/* الكارد الزجاجي المطور */
.main-glass-container {
    width: 100%;
    max-width: 1200px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 50px 100px rgba(0,0,0,0.6);
    z-index: 10;
}
.service-card {
    /* الكود القديم... */
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    background-repeat: repeat;
    background-size: 100px;
    opacity: 0.95; /* شفافية بسيطة للملمس */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* صورة يسار / نص يمين */
    gap: 50px;
    align-items: center;
    direction: rtl; /* العودة للعربية داخل المحتوى */
}

/* --- جانب الصورة --- */
.visual-wrapper { order: 2; } /* تعكس الترتيب ليكون اليسار هو الصورة في الـ Grid */

/* --- إعدادات العمق والحركة السينمائية --- */
.visual-wrapper {
    order: 2;
    perspective: 1000px; /* لإعطاء بعد ثالث للعناصر بالداخل */
}

.image-frame-3d {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    /* الحركة السينمائية: دمج الدوران الخفيف مع الإزاحة */
    animation: cinemaBreathe 8s ease-in-out infinite;
    transform-style: preserve-3d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.image-frame-3d img {
    width: 100%;
    border-radius: 30px;
    display: block;
    transition: transform 0.5s ease;
}

/* حركة التنفس السينمائي بدون تغيير الحجم (بدون Scale) */
@keyframes cinemaBreathe {
    0% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
    }
    50% {
        transform: rotateY(5deg) rotateX(-2deg) translateY(-15px);
    }
    100% {
        transform: rotateY(-5deg) rotateX(2deg) translateY(0px);
    }
}

/* تأثير التفاعل عند مرور الماوس (اختياري) */
.image-frame-3d:hover {
    animation-play-state: paused; /* يتوقف التنفس عند الماوس للتركيز */
    transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 210, 255, 0.2);
}

/* الوميض الخفي (Trend 2025) */
.glow-effect {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
    background-size: 200% 200%;
    animation: shineFlow 6s linear infinite;
    pointer-events: none;
}

@keyframes shineFlow {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* --- جانب النص --- */
.content-wrapper { order: 1; }

.brand-title-modern {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #fff 50%, var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.sub-heading-modern { font-size: 1.8rem; color: var(--primary-blue); margin-bottom: 25px; font-weight: 600; }

.description-text { color: var(--text-dim); font-size: 1.2rem; line-height: 1.8; margin-bottom: 40px; }

/* --- الأزرار --- */
.cta-flex-group { display: flex; gap: 20px; flex-wrap: wrap; }

.btn-main-glow {
    padding: 16px 45px;
    background: var(--primary-blue);
    color: #000;
    text-decoration: none;
    border-radius: 16px;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
    transition: 0.3s;
}

.btn-main-glow:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 210, 255, 0.6); }

.btn-secondary-outline {
    padding: 16px 35px;
    border: 1.5px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    background: rgba(255,255,255,0.02);
}

.btn-secondary-outline:hover { background: #fff; color: #000; }

/* --- Animations & Responsive --- */
@keyframes floatingGlow {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .visual-wrapper { order: -1; margin-bottom: 20px; }
    .main-glass-container { padding: 30px; border-radius: 0; }
    .cta-flex-group { justify-content: center; }
}
/*hero section End */
/*services start */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700;900&display=swap');

/* تحسين سكشن الخدمات لتقليل المسافة وعمل تداخل */
.services-section {
    padding: 60px 5% 100px; /* تقليل البادنج العلوي من 100 لـ 60 */
    background: #020617;
    margin-top: -50px; /* سحب السكشن للأعلى لتقليل الفراغ مع السلايدر */
    position: relative;
    z-index: 20; /* لضمان ظهوره فوق تأثيرات خلفية السلايدر */
    direction: rtl;
}

/* إضافة لمسة انسيابية (Gradient Transition) بين السكاشن */
.services-section::before {
    content: "";
    position: absolute;
    top: -100px; /* يبدأ التأثير من نهاية السلايدر */
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #020617);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 50px; /* تقليل المسافة تحت العنوان أيضاً */
}

.services-header .badge {
    color: #00d2ff;
    background: rgba(0, 210, 255, 0.1);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.services-header .section-title {
    font-size: 2.5rem;
    margin-top: 15px;
    font-weight: 900;
}

/* شبكة الكروت المتجاوبة */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02); /* خلفية أغمق قليلاً للتباين */
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    padding: 2px; /* سمك الخط */
    background: linear-gradient(135deg, transparent, var(--primary-blue), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.5s;
}

.service-card:hover::before {
    opacity: 1;
    animation: rotateBeam 3s linear infinite;
}

@keyframes rotateBeam {
    from { filter: hue-rotate(0deg); }
    to { filter: hue-rotate(360deg); }
}
/* تأثير الخط المضيء الذي يتحرك حول الكارت عند التحويم */
.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.15);
}

/* تأثير التوهج الخلفي للكارت */
.card-glow {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, var(--glow-color, #00d2ff22) 0%, transparent 70%);
    opacity: 0;
    transition: 0.4s;
}


.service-card:hover .card-glow { opacity: 1; }

/* تنسيق الأيقونات */
.icon-box {
    font-size: 2.5rem;
    color: #00d2ff;
    margin-bottom: 20px;
    transition: 0.4s;
}

.service-card:hover .icon-box {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px #00d2ff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1rem;
}

/* التجاوب مع الجوال */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.8rem; }
}
/*services End */
/* why us section start */
/* استخدام المتغيرات لتسهيل التعديل */
:root {
    --primary-gradient: linear-gradient(135deg, #007bff 0%, #00d2ff 100%);
    --card-bg: rgba(255, 255, 255, 0.8);
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --border-radius: 20px;
}

.seo-arab-why-us {
    padding: 100px 0;
    background: #f0f4f8; /* لون خلفية هادئ */
    direction: rtl;
    overflow: hidden;
    position: relative;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-badge {
    background: var(--primary-gradient);
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.why-us-title {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-us-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* نظام الشبكة الحديث */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* تأثير Glassmorphism على الكروت */
.why-us-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.why-us-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: #fff;
}

/* تمييز الكارت النشط */
.active-card {
    border: 2px solid #007bff;
    box-shadow: 0 10px 25px rgba(0,123,255,0.1);
}

.why-us-icon-wrapper {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.why-us-card-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-us-card-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.why-us-footer-note {
    margin-top: 60px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
    opacity: 0.8;
}

/* موبايل ريسبونسيف */
@media (max-width: 768px) {
    .why-us-title { font-size: 2rem; }
    .why-us-card { padding: 30px 20px; }
}
/* why us section end */
/*stats section start*/
:root {
    --neon-blue: #00f2ff;
    --neon-purple: #7000ff;
    --dark-void: #050505;
}

.seo-arab-exclusive-stats {
    padding: 120px 0;
    background-color: var(--dark-void);
    color: white;
    direction: rtl;
    position: relative;
    overflow: hidden;
    font-family: 'Cairo', sans-serif;
}

/* الأورب المضيء في الخلفية */
.stats-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stats-premium-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stats-header-modern {
    text-align: center;
    margin-bottom: 80px;
}

.stats-top-title {
    color: var(--neon-blue);
    letter-spacing: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

.stats-main-heading {
    font-size: 3rem;
    margin-top: 15px;
}

.highlight {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

/* تصميم الكروت التفاعلية */
.stats-interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-premium-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 30px;
    position: relative;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
}

.stat-premium-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--neon-blue);
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.15);
}

/* الكارت المميز بزيادة */
.highlight-card {
    border-color: var(--neon-purple);
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.1);
}

.stat-icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.stat-number-wrapper {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.stat-counter {
    background: linear-gradient(to bottom, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-suffix {
    color: var(--neon-blue);
    font-size: 2rem;
    vertical-align: super;
}

.stat-text {
    font-size: 1.1rem;
    color: #aaa;
    margin: 0;
}

.stat-popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--neon-purple);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

@media (max-width: 768px) {
    .stats-main-heading { font-size: 2rem; }
    .stat-number-wrapper { font-size: 3rem; }
}
/*stats section end*/

/*testimonials start*/
/* --- Testimonials Orbit Section CSS --- */
.testimonial-orbit-final {
    background: #000;
    min-height: 1000px; /* مساحة كافية للعنوان والمدار */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
    perspective: 1200px; /* العمق للبعد الثالث */
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

/* Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    z-index: 100;
    position: relative;
}

.sub-title {
    display: block;
    color: #00f2ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
    font-weight: 900;
}

.cyan-text {
    color: #00f2ff;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.section-header p {
    color: #888;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1rem;
}

/* Orbit Stage Layout */
.orbit-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 550px;
    margin-top: 20px;
}

/* Central Card (The Focal Point) */
.center-focus-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 50;
}

.glass-card {
    width: min(340px, 85vw);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border: 2px solid #00f2ff;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
    color: #fff;
}

.quote-mark {
    font-size: 4rem;
    color: #00f2ff;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -10px;
}

#active-quote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #e0e0e0;
}

#active-name {
    color: #00f2ff;
    font-weight: 700;
    margin-bottom: 5px;
}

.stars-line {
    color: #ffca28;
    letter-spacing: 2px;
}

/* Satellite Cards (Orbiting) */
.sat-card-pro {
    position: absolute;
    width: 180px;
    background: #0a0a0a;
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 12px;
    padding: 12px;
    color: white;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sat-card-pro:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
    z-index: 500 !important;
}

.sat-card-pro img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #00f2ff;
    object-fit: cover;
}

.sat-card-pro b {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.sat-card-pro p {
    font-size: 0.7rem;
    color: #888;
    margin: 0;
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    .testimonial-orbit-final { min-height: 850px; }
    .sat-card-pro { width: 145px; padding: 8px; }
    .sat-card-pro b { font-size: 0.75rem; }
    .sat-card-pro img { width: 35px; height: 35px; }
    .orbit-stage { height: 400px; }
}
/*testimonials end*/

/*partners-section start*/
.partners-reveal-section {
    background: #050505;
    padding: 100px 20px;
    direction: rtl;
    color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.neon-title { font-size: 2.5rem; font-weight: 800; }
.cyan-text { color: #00f2ff; text-shadow: 0 0 15px rgba(0, 242, 255, 0.4); }

.partners-grid {
    display: flex;
    gap: 15px;
    max-width: 1300px;
    margin: 0 auto;
    height: 350px;
}

.partner-card {
    position: relative;
    flex: 1; /* العرض الابتدائي متساوي */
    background: #111;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.25, 1, 0.3, 1);
    cursor: pointer;
}

/* التوسع عند المرور بالماوس */
.partner-card:hover {
    flex: 4; /* يوسع بشكل كبير ليظهر التفاصيل */
    background: linear-gradient(145deg, #111, #1a1a1a);
    border-color: #00f2ff;
}

.partner-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 30px;
    white-space: nowrap; /* يمنع نزول النص لسطر جديد أثناء التمدد */
}

.logo-placeholder {
    min-width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #00f2ff;
    font-size: 1.2rem;
}

.partner-details {
    margin-right: 30px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.partner-card:hover .partner-details {
    opacity: 1;
    transform: translateX(0);
}

.partner-details h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.partner-details p {
    color: #aaa;
    font-size: 1rem;
}

/* الموبايل: يتحول لـ Vertical Stack */
@media (max-width: 768px) {
    .partners-grid {
        flex-direction: column;
        height: auto;
    }
    .partner-card {
        height: 120px;
        flex: none;
    }
    .partner-card:hover {
        height: 200px;
        flex: none;
    }
    .partner-content {
        white-space: normal;
    }
}
/*partners-section end*/
/* blog-section start */
.bento-blog {
    background: #000;
    padding: 80px 20px;
    direction: rtl;
    color: white;
}

.bento-header { text-align: center; margin-bottom: 50px; }
.bento-header h2 { font-size: 2.5rem; }
.cyan { color: #00f2ff; }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* نقسم العرض لـ 4 أعمدة */
    grid-auto-rows: 200px; /* كل صف ارتفاعه 200px */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-item {
    position: relative;
    background: #111;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

/* توزيع المساحات بالملي */
.item-1 { grid-column: span 2; grid-row: span 2; } /* الكبيرة: 2x2 */
.item-2 { grid-column: span 1; grid-row: span 2; } /* الطويلة: 1x2 */
.item-3 { grid-column: span 1; grid-row: span 1; } /* صغيرة: 1x1 */
.item-4 { grid-column: span 1; grid-row: span 1; } /* صغيرة: 1x1 */
.item-5 { grid-column: span 2; grid-row: span 1; } /* العريضة: 2x1 */
.item-6 { grid-column: span 1; grid-row: span 1; } /* صغيرة: 1x1 */

.bento-img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* الصور هتملا المربع أيا كان مقاسها */
    transition: 0.5s;
    opacity: 0.6;
}

.bento-content {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 25px;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    width: 100%;
    box-sizing: border-box;
}

.tag {
    background: #00f2ff;
    color: #000;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: bold;
}

.bento-item h3 { font-size: 1.1rem; margin-top: 10px; line-height: 1.4; }

/* تأثير الهوفر */
.bento-item:hover { transform: scale(0.98); border-color: #00f2ff; }
.bento-item:hover img { opacity: 1; transform: scale(1.05); }

/* الموبايل: الكل فوق بعض */
@media (max-width: 992px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .item-1, .item-2, .item-5 { grid-column: span 2; }
}

@media (max-width: 600px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; }
    .bento-item { grid-column: span 1 !important; grid-row: span 1 !important; }
}
/* إظهار الوصف في كل الكروت */
.bento-desc {
    font-size: 0.85rem;
    color: #ddd;
    line-height: 1.4;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* سطرين بالظبط */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* تعديل الـ Content عشان يستوعب الكلام الكتير في المربعات الصغيرة */
.bento-content {
    padding: 15px; /* صغرنا الـ padding شوية */
    background: linear-gradient(to top, rgba(0,0,0,1) 30%, transparent); /* سواد أتقل تحت الكلام */
}

.bento-item h3 {
    font-size: 1rem; /* تصغير حجم العنوان شوية عشان المساحة */
    margin-bottom: 5px;
}
/* blog-section end */
/* FAQ START */
/* FAQ Section Styles */
.faq-section {
    background: #000;
    padding: 100px 20px;
    direction: rtl;
    color: white;
    position: relative;
    overflow: hidden;
}

/* هالة النور في الخلفية */
.faq-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.05), transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.faq-container { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

.faq-header { text-align: center; margin-bottom: 60px; }
.sub-title { color: #00f2ff; font-size: 0.9rem; letter-spacing: 2px; font-weight: bold; }
.main-title { font-size: 3rem; margin: 15px 0; font-weight: 900; }
.cyan { color: #00f2ff; text-shadow: 0 0 15px rgba(0, 242, 255, 0.4); }

/* توزيع العمودين */
.faq-wrapper { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    align-items: start;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.faq-item:hover {
    border-color: rgba(0, 242, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: right;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    width: 35px;
    height: 35px;
    background: rgba(0, 242, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #00f2ff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
}

.answer-content {
    padding: 0 25px 25px 25px;
    color: #bbb;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* الحالة النشطة */
.faq-item.active {
    border-color: #00f2ff;
    background: rgba(0, 242, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* سعة كافية للنص */
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

.faq-item.active .icon {
    background: #00f2ff;
    color: #000;
    transform: rotate(45deg);
}

/* الموبايل */
@media (max-width: 768px) {
    .faq-wrapper { grid-template-columns: 1fr; }
    .main-title { font-size: 2.2rem; }
    .faq-question { font-size: 1rem; padding: 20px; }
}
.faq-item {
    position: relative;
    background: rgba(255, 255, 255, 0.01); /* شفافية أكتر */
    border: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

/* إضافة لمعة خفيفة بتظهر فقط وقت الهوفر */
.faq-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(0, 242, 255, 0.08), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s;
}

.faq-item:hover::after {
    opacity: 1;
}
/* FAQ END */
/*contact-section start*/
/* Contact Safe Section Styles */
.contact-safe {
    background: #000;
    padding: 100px 0;
    direction: rtl;
    overflow: hidden;
    color: #fff;
}

.container-mini {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.contact-text {
    flex: 1;
    min-width: 320px;
}

.status-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(0, 242, 255, 0.1);
    color: #00f2ff;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.contact-text h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 20px; }
.cyan { color: #00f2ff; text-shadow: 0 0 15px rgba(0, 242, 255, 0.3); }
.contact-text p { color: #aaa; line-height: 1.8; margin-bottom: 35px; font-size: 1.1rem; }

.contact-pills span {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #888;
    font-size: 0.85rem;
    margin: 5px;
    transition: 0.3s;
}

.contact-pills span:hover { border-color: #00f2ff; color: #00f2ff; }

/* Contact Box Styling */
.contact-box {
    flex: 1.2;
    min-width: 320px;
    background: linear-gradient(145deg, #0a0a0a, #050505);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: 0.4s;
}

.contact-box:hover {
    border-color: rgba(0, 242, 255, 0.3);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.05);
}

.input-wrapper { margin-bottom: 20px; }

.contact-box input, 
.contact-box select, 
.contact-box textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 16px;
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.contact-box input:focus, 
.contact-box select:focus, 
.contact-box textarea:focus {
    border-color: #00f2ff;
    background: rgba(0, 242, 255, 0.03);
    outline: none;
    box-shadow: inset 0 0 10px rgba(0, 242, 255, 0.1);
    transform: translateX(-5px);
}

/* Neon Button */
.neon-btn {
    width: 100%;
    padding: 18px;
    background: #00f2ff;
    border: none;
    border-radius: 12px;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.neon-btn:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
    transform: translateY(-3px);
}

.neon-btn::after {
    content: '';
    position: absolute;
    top: 0;
/*contact-section end*/

/*Footer start*/
.tech-footer {
    background: #000;
    color: #fff;
    direction: rtl;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-top: 1px solid #111;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* سكشن الـ CTA فوق الفوتر */
.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid #111;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.footer-btn {
    padding: 15px 40px;
    background: #00f2ff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

.footer-btn:hover {
    box-shadow: 0 0 25px rgba(0, 242, 255, 0.5);
    transform: scale(1.05);
}

/* الفوتر الأساسي */
.footer-main { padding: 80px 0; }

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-brand { flex: 1; min-width: 280px; }
.f-logo { font-size: 2rem; font-weight: 900; margin-bottom: 20px; }
.f-logo span { color: #00f2ff; }
.footer-brand p { color: #666; line-height: 1.8; max-width: 300px; }

.footer-nav-group {
    display: flex;
    gap: 80px;
    flex: 2;
    justify-content: flex-end;
}

.nav-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.nav-col a {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-col a:hover { color: #00f2ff; transform: translateX(-5px); }

/* الجزء السفلي */
.footer-bottom {
    padding: 30px 0;
    background: #050505;
    border-top: 1px solid #111;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
    font-size: 0.85rem;
}

/* الموبايل */
@media (max-width: 768px) {
    .footer-wrapper { flex-direction: column; text-align: center; }
    .footer-nav-group { flex-direction: column; align-items: center; gap: 40px; }
    .footer-brand p { margin: 0 auto; }
    .bottom-flex { flex-direction: column; gap: 10px; }
    .nav-col a:hover { transform: translateY(-3px); }
}
/*Footer end*/