.elementor-323 .elementor-element.elementor-element-2efaeda{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-2efaeda *//* تحويل لون العنوان إلى الأبيض إجبارياً */
h1,
.hero-section h1,
.elementor-heading-title,
.entry-title,
article h1 {
    color: #ffffff !important;
}

/* للعناوين الفرعية أيضاً */
.hero-section h1,
.hero-section .subtitle,
.hero-section p {
    color: #ffffff !important;
}/* End custom CSS */
/* Start custom CSS */:root {
            --primary: #0a1628;
            --primary-light: #1a2d50;
            --secondary: #1e90ff;
            --accent: #00b4d8;
            --accent-light: #90e0ef;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --bg: #f0f4f8;
            --card-bg: #ffffff;
            --text: #1e293b;
            --text-light: #64748b;
            --radius: 12px;
            --shadow: 0 4px 15px rgba(10, 22, 40, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Cairo', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
            font-size: 16px;
        }

        /* Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            z-index: 9999;
            background: transparent;
        }

        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
            width: 0%;
            transition: width 0.2s;
        }

        /* Breadcrumb */
        .breadcrumb {
            background: var(--primary);
            padding: 10px 20px;
            font-size: 0.85rem;
        }

        .breadcrumb a {
            color: var(--accent-light);
            text-decoration: none;
        }

        .breadcrumb span {
            color: #94a3b8;
        }

        /* Hero */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #0d3b66 100%);
            color: white;
            padding: 50px 20px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(30, 144, 255, 0.08) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .hero h1 {
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 12px;
            position: relative;
        }

        .hero p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 15px;
            position: relative;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(0, 180, 216, 0.2);
            border: 1px solid var(--accent);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: var(--accent-light);
            position: relative;
        }

        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 320px;
            gap: 25px;
        }

        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr;
            }

            .sidebar {
                display: block;
                /* Show sidebar on mobile */
                order: 2;
                /* Move to bottom */
            }

            /* Hide TOC on mobile to avoid clutter, keep only author bio */
            .sidebar .toc-card {
                display: none;
            }
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .toc-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            margin-bottom: 20px;
        }

        .toc-card h3 {
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 12px;
            border-bottom: 2px solid var(--secondary);
            padding-bottom: 8px;
        }

        .toc-card a {
            display: block;
            padding: 6px 0;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.85rem;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s;
        }

        .toc-card a:hover {
            color: var(--secondary);
            padding-right: 8px;
        }

        /* Sections */
        section {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
        }

        section h2 {
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary);
        }

        section h3 {
            color: var(--primary-light);
            font-size: 1.05rem;
            font-weight: 700;
            margin: 15px 0 8px;
        }

        section h2 i {
            color: var(--secondary);
            margin-left: 8px;
        }

        /* Section Boxes */
        .section-box {
            padding: 15px;
            border-radius: var(--radius);
            margin: 12px 0;
        }

        .section-box.info {
            background: #eff6ff;
            border-right: 4px solid var(--secondary);
        }

        .section-box.warning {
            background: #fef3c7;
            border-right: 4px solid var(--warning);
        }

        .section-box.danger {
            background: #fef2f2;
            border-right: 4px solid var(--danger);
        }

        .section-box.success {
            background: #ecfdf5;
            border-right: 4px solid var(--success);
        }

        .section-box h4 {
            margin-bottom: 6px;
            font-size: 0.95rem;
        }

        /* Tables */
        .responsive-table {
            overflow-x: auto;
            margin: 15px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        th {
            background: var(--primary);
            color: white;
            padding: 10px;
            text-align: right;
            font-weight: 700;
        }

        td {
            padding: 10px;
            border-bottom: 1px solid #e2e8f0;
        }

        tr:nth-child(even) {
            background: #f8fafc;
        }

        tr:hover {
            background: #eff6ff;
        }

        /* Lists */
        ul,
        ol {
            padding-right: 20px;
            margin: 8px 0;
        }

        li {
            margin-bottom: 6px;
        }

        /* Author */
        .author-bio {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .author-bio img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary);
            margin-bottom: 10px;
        }

        .author-bio h4 {
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 4px;
        }

        .author-bio p {
            font-size: 0.82rem;
            color: var(--text-light);
            margin-bottom: 3px;
        }

        .author-bio .social-links {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 12px;
        }

        .author-bio .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
            transition: transform 0.3s;
        }

        .author-bio .social-links a:hover {
            transform: scale(1.15);
        }

        .author-bio .social-links .fb {
            background: #1877f2;
        }

        .author-bio .social-links .ig {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
        }

        .author-bio .social-links .yt {
            background: #ff0000;
        }

        .author-bio .social-links .wa {
            background: #25d366;
        }

        .author-bio .social-links .tw {
            background: #000;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--primary), #0d3b66);
            color: white;
            text-align: center;
            padding: 30px;
            border-radius: var(--radius);
            margin: 20px 0;
        }

        .cta-section h2 {
            color: white;
            border-bottom-color: var(--accent);
        }

        .cta-btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-family: 'Cairo', sans-serif;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            margin: 8px;
            transition: all 0.3s;
        }

        .cta-btn.primary {
            background: var(--accent);
            color: white;
        }

        .cta-btn.whatsapp {
            background: #25d366;
            color: white;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        /* Mobile Sticky */
        .mobile-sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--primary);
            padding: 8px;
            z-index: 999;
        }

        .bar-buttons {
            display: flex;
            gap: 8px;
        }

        .bar-btn {
            flex: 1;
            text-align: center;
            padding: 10px;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .bar-btn.call {
            background: var(--secondary);
        }

        .bar-btn.whatsapp {
            background: #25d366;
        }

        @media (max-width: 768px) {
            .mobile-sticky-bar {
                display: block;
            }

            body {
                padding-bottom: 60px;
            }
        }

        /* FAQ */
        .faq-item {
            margin-bottom: 8px;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .faq-question {
            width: 100%;
            background: var(--card-bg);
            border: none;
            padding: 14px 18px;
            text-align: right;
            font-family: 'Cairo', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--primary);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: #f0f9ff;
        }

        .faq-question i {
            transition: transform 0.3s;
            color: var(--accent);
        }

        .faq-question.active i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
            background: #f8fafc;
            padding: 0 18px;
        }

        .faq-answer.open {
            max-height: 300px;
            padding: 14px 18px;
        }

        /* References */
        .ref-list {
            list-style: none;
            padding: 0;
        }

        .ref-list li {
            padding: 8px 0;
            border-bottom: 1px solid #e2e8f0;
            font-size: 0.85rem;
        }

        .ref-list a {
            color: var(--secondary);
        }/* End custom CSS */