.elementor-297 .elementor-element.elementor-element-3b57d11{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS */:root {
            --primary: #0f4c5c;
            --primary-light: #1a6b7a;
            --primary-dark: #0a3540;
            --accent: #e8a838;
            --gold: #d4a537;
            --teal: #0f4c5c;
            --teal-light: #e6f3f5;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-light: #f8fafb;
            --white: #ffffff;
            --success: #10b981;
            --danger: #ef4444;
            --warning: #f59e0b;
            --radius: 14px;
            --shadow: 0 10px 30px -10px rgba(15, 76, 92, 0.12);
            --shadow-lg: 0 20px 50px -15px rgba(15, 76, 92, 0.18);
        }

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

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

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), var(--gold));
            z-index: 9999;
            transition: width 0.2s;
            width: 0%;
        }

        /* 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;
            flex-wrap: wrap;
            gap: 8px;
        }

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

        .top-bar a:hover {
            color: var(--accent);
        }

        /* ===== HERO with Animation ===== */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
            color: #fff !important;
            padding: 80px 30px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(232, 168, 56, 0.08) 0%, transparent 60%);
            animation: heroFloat 15s ease-in-out infinite;
        }

        @keyframes heroFloat {

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

            33% {
                transform: translate(30px, -20px) rotate(5deg);
            }

            66% {
                transform: translate(-20px, 15px) rotate(-3deg);
            }
        }

        .hero>* {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 2.6rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #fff !important;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        /* Animated Underline on H1 */
        .hero h1::after {
            content: '';
            display: block;
            width: 120px;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), #fff, var(--accent));
            background-size: 200% 100%;
            margin: 15px auto 0;
            border-radius: 2px;
            animation: shimmer 2.5s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .hero h1 span {
            color: var(--accent);
        }

        .hero p {
            font-size: 1.15rem;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 25px;
            color: #fff !important;
        }

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

        .hero-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s, background 0.3s;
        }

        .hero-badge:hover {
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.25);
        }

        .hero-badge i {
            color: var(--accent);
        }

        .hero-cta {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

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

        .btn-primary {
            background: var(--accent);
            color: var(--primary-dark);
            box-shadow: 0 4px 15px rgba(232, 168, 56, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(232, 168, 56, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }

        /* Snippet Cards */
        .snippet-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            padding: 20px;
            margin-top: -30px;
            position: relative;
            z-index: 3;
        }

        .snippet-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 20px;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--accent);
            transition: transform 0.3s;
        }

        .snippet-card:hover {
            transform: translateY(-3px);
        }

        .snippet-card h4 {
            color: var(--primary);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        .snippet-card p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* Content Wrapper - Mobile First */
        .content-wrapper {
            display: block;
            padding: 15px;
        }

        @media (min-width: 901px) {
            .content-wrapper {
                display: grid;
                grid-template-columns: 300px 1fr;
                gap: 40px;
                padding: 20px;
            }
        }

        /* Sidebar */
        .sidebar {
            display: none;
        }

        @media (min-width: 901px) {
            .sidebar {
                display: block;
                position: sticky;
                top: 20px;
                height: fit-content;
                background: #fff;
                border-radius: var(--radius);
                padding: 25px;
                box-shadow: var(--shadow);
            }
        }

        .sidebar h3 {
            color: var(--primary);
            font-size: 1rem;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--teal-light);
        }

        .sidebar ul {
            list-style: none;
        }

        .sidebar li {
            margin: 4px 0;
        }

        .sidebar a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.85rem;
            padding: 6px 10px;
            display: block;
            border-radius: 8px;
            border-right: 3px solid transparent;
            transition: all 0.3s;
        }

        .sidebar a:hover {
            background: var(--teal-light);
            color: var(--primary);
            border-right-color: var(--accent);
        }

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

        main h3 {
            font-size: 1.2rem;
            color: var(--primary-light);
            margin: 20px 0 10px;
        }

        main p {
            margin-bottom: 15px;
            line-height: 2;
        }

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

        main li {
            margin: 8px 0;
            line-height: 1.8;
        }

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

        .section-box h4 {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

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

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

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

        /* Tables */
        .table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            margin: 20px 0;
        }

        .comparison-table {
            display: block;
            width: 100%;
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-collapse: collapse;
            margin: 30px 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

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

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

        .comparison-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #f0f0f0;
        }

        .comparison-table tbody tr:hover {
            background: var(--teal-light);
        }

        /* Author Bio */
        .author-bio {
            background: #fff;
            border-radius: var(--radius);
            padding: 25px;
            box-shadow: var(--shadow);
            margin: 20px 0;
            border-right: 5px solid var(--accent);
        }

        .author-details-grid {
            display: grid;
            grid-template-columns: 120px 1fr;
            gap: 25px;
            align-items: start;
        }

        .author-img {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--accent);
        }

        .author-name {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }

        /* Mobile Sticky Bar */
        .mobile-sticky-bar {
            display: none;
            position: fixed;
            bottom: 0;
            right: 0;
            left: 0;
            background: #fff;
            padding: 10px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }

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

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

        .bar-btn.call {
            background: var(--primary);
            color: #fff;
        }

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

        /* ===== RESPONSIVE ===== */
        @media (max-width: 900px) {
            .hero {
                padding: 60px 20px 40px;
            }

            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .snippet-cards {
                grid-template-columns: 1fr;
                margin-top: -15px;
                padding: 15px;
            }

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

            .author-details-grid {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            main {
                padding-bottom: 80px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .hero-badges {
                gap: 8px;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 6px 12px;
            }

            .top-bar {
                font-size: 0.75rem;
                justify-content: center;
            }

            main h2 {
                font-size: 1.25rem;
            }
        }/* End custom CSS */