.elementor-314 .elementor-element.elementor-element-176363b{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */:root {
            --primary: #1a3a5c;
            --primary-dark: #0d1f3c;
            --primary-light: #2563eb;
            --accent: #38bdf8;
            --accent-gold: #f0c040;
            --bg: #f0f4f8;
            --card-bg: #ffffff;
            --text: #1e293b;
            --text-light: #64748b;
            --shadow: 0 2px 12px rgba(26, 58, 92, 0.08);
            --radius: 12px;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
        }

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

        body {
            font-family: 'Cairo', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        /* Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            z-index: 9999;
            background: rgba(26, 58, 92, 0.1);
        }

        #progressBar {
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--primary-light));
            width: 0%;
            transition: width 0.15s;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-dark);
            color: #fff;
            padding: 8px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
        }

        .top-bar a {
            color: #fff;
            text-decoration: none;
            margin: 0 8px;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            color: #fff;
            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(56, 189, 248, 0.08) 0%, transparent 60%);
            animation: heroFloat 8s ease-in-out infinite;
        }

        @keyframes heroFloat {

            0%,
            100% {
                transform: translate(0, 0);
            }

            50% {
                transform: translate(-3%, 3%);
            }
        }

        .hero h1 {
            font-size: 2rem !important;
            font-weight: 900;
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
            color: #fff !important;
        }

        .hero h1::after {
            content: '';
            display: block;
            width: 80%;
            height: 4px;
            background: linear-gradient(90deg, transparent, var(--accent), transparent);
            margin: 8px auto 0;
            border-radius: 2px;
            animation: glowLine 3s ease-in-out infinite;
        }

        @keyframes glowLine {

            0%,
            100% {
                opacity: 0.6;
                width: 60%;
            }

            50% {
                opacity: 1;
                width: 100%;
            }
        }

        .hero p {
            font-size: 1.05rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 20px;
        }

        .hero-badges {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-family: 'Cairo', sans-serif;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
        }

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

        .btn-primary:hover {
            background: #7dd3fc;
            transform: translateY(-2px);
        }

        /* AI Snippet Boxes */
        .ai-snippet {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border-right: 4px solid var(--primary-light);
            border-radius: var(--radius);
            padding: 20px;
            margin: 20px;
            font-size: 0.95rem;
        }

        .ai-snippet strong {
            color: var(--primary);
        }

        .ai-snippet .source-tag {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 2px 10px;
            border-radius: 10px;
            font-size: 0.75rem;
            margin-top: 8px;
        }

        /* Content Wrapper */
        .content-wrapper {
            max-width: 100%;
            margin: 0;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
        }

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

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

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

        .toc ul {
            list-style: none;
        }

        .toc li {
            margin-bottom: 6px;
        }

        .toc a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
            display: block;
            padding: 3px 0;
        }

        .toc a:hover {
            color: var(--primary-light);
        }

        .author-bio {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow);
            text-align: center;
        }

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

        .author-bio h4 {
            color: var(--primary) !important;
            margin-bottom: 4px;
        }

        .author-bio p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Main Content */
        main h2 {
            color: var(--primary) !important;
            font-size: 1.5rem !important;
            margin: 35px 0 15px;
            padding-bottom: 8px;
            border-bottom: 3px solid var(--accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        main h3 {
            color: var(--primary-dark) !important;
            font-size: 1.15rem !important;
            margin: 20px 0 10px;
        }

        main p {
            margin-bottom: 12px;
            line-height: 1.9;
        }

        main ul,
        main ol {
            margin: 10px 0 15px 20px;
        }

        main li {
            margin-bottom: 6px;
            line-height: 1.8;
        }

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

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

        .section-box.info {
            background: linear-gradient(135deg, #eff6ff, #dbeafe);
            border-right: 4px solid var(--primary-light);
        }

        .section-box.warning {
            background: linear-gradient(135deg, #fffbeb, #fef3c7);
            border-right: 4px solid var(--warning);
        }

        .section-box.danger {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border-right: 4px solid var(--danger);
        }

        .section-box.success {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border-right: 4px solid var(--success);
        }

        /* Tables */
        .table-wrapper {
            overflow-x: auto;
            margin: 15px 0;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--card-bg);
            font-size: 0.88rem;
        }

        .comparison-table thead {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: #fff;
        }

        .comparison-table th {
            padding: 12px 14px;
            text-align: right;
            font-weight: 700;
            white-space: nowrap;
        }

        .comparison-table td {
            padding: 10px 14px;
            border-bottom: 1px solid #e2e8f0;
        }

        .comparison-table tbody tr:hover {
            background: #f0f9ff;
        }

        /* Mobile Sticky Bar */
        .mobile-sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: var(--primary-dark);
            padding: 8px 12px;
            box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
        }

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

        .bar-btn {
            flex: 1;
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
            font-family: 'Cairo', sans-serif;
            font-size: 0.9rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .bar-btn.call {
            background: var(--accent);
            color: var(--primary-dark);
        }

        .bar-btn.whatsapp {
            background: #25D366;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
                order: -1;
            }

            .hero h1 {
                font-size: 1.6rem !important;
            }

            .mobile-sticky-bar {
                display: block;
            }

            main {
                padding-bottom: 70px;
            }
        }

        @media (max-width: 600px) {
            .hero {
                padding: 30px 15px 25px;
            }

            .hero h1 {
                font-size: 1.3rem !important;
            }

            .content-wrapper {
                padding: 10px;
            }

            main h2 {
                font-size: 1.2rem !important;
            }

            .comparison-table {
                font-size: 0.78rem;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 8px 10px;
            }

            .ai-snippet {
                margin: 10px;
                padding: 14px;
                font-size: 0.88rem;
            }
        }/* End custom CSS */