
        /* ---------- Global ---------- */
        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Poppins', sans-serif; }
        body, html { height: 100%; display: flex; flex-direction: column; }
        .page-wrapper { flex: 1; display: flex; flex-direction: column; }

        /* Header */
        header { background: linear-gradient(90deg, #3b82f6, #ff9800); color: #fff; padding: 15px 25px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 1000; }
        header h1 { font-size: 1.35rem; }
        nav ul { display: flex; list-style: none; }
        nav li { margin-left: 20px; }
        nav a { color: #fff; text-decoration: none; font-weight: 500; transition: .2s; }
        nav a:hover { opacity: .85; }
        nav a.active { border-bottom: 2px solid #ffeb3b; color: #ffeb3b; font-weight: 600; }
        .menu-toggle { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 20px; cursor: pointer; }
        .menu-toggle span { height: 3px; background: #fff; border-radius: 3px; display: block; }
        .close-btn { position: absolute; top: 18px; right: 18px; font-size: 26px; color: #fff; cursor: pointer; display: none; }

        @media (max-width: 768px) {
            .menu-toggle { display: flex; order: 2; }
            .close-btn { display: block; }
            header h1 { order: 1; }
            nav ul {
                position: fixed; top: 0; right: -280px; height: 100%; width: 280px; flex-direction: column;
                background: linear-gradient(90deg, #4C2C96, #4634A7); padding-top: 80px; list-style: none;
                transition: right .25s; z-index: 1200;
            }
            nav ul.active { right: 0; }
            nav ul li { margin: 20px 0; text-align: center; }
            nav li { margin-left: 0; }
        }

        /* Logo */
        .logo-img { max-height: 80px; max-width: 200px; width: auto; height: auto; display: block; }

        /* Hero */
        .hero { padding: 100px 18px; text-align: center; color: #fff; background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/bj-services-img.jpg') no-repeat center center; background-size: cover; min-height: 50vh; display: flex; flex-direction: column; justify-content: center; }
        .hero h2 { font-size: 1.9rem; margin-bottom: 18px; animation: fadeInDown 1s ease forwards; }
        .hero p { max-width: 700px; margin: 0 auto; font-size: 1rem; color: #f0f0f0; animation: fadeInUp 1s ease forwards; }
        @media (max-width: 768px) { .hero { padding: 70px 18px; } .hero h2 { font-size: 1.5rem; } }

        /* Animations */
        @keyframes fadeInDown { 0% { opacity: 0; transform: translateY(-20px); } 100% { opacity: 1; transform: translateY(0); } }
        @keyframes fadeInUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }

        /* Pricing Section */
        .pricing-section { text-align: center; padding: 60px 20px 40px; background-color: #f5f5f5; flex: 1; display: flex; flex-direction: column; justify-content: center; }
        .pricing-section h2 { font-size: 2rem; margin-bottom: 10px; }
        .pricing-section p { color: #6b7280; max-width: 600px; margin: 0 auto 40px; }
        .pricing-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 25px; margin-top: 20px; }
        .pricing-card { width: 280px; height: 400px; background: #fff; border-radius: 10px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; justify-content: space-between; padding: 30px; text-align: center; transition: 0.3s; }

        .pricing-card h3, .pricing-card h4 { color: #3b82f6; }
        .pricing-card h4 { font-size: 2.5rem; font-weight: bold; color: #ff9800; margin-bottom: 15px; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2); }
        .pricing-card p { font-size: 1rem; color: #333; }
        .pricing-card button {
            margin-top: 20px; background-color: #3b82f6; color: white; border: none; padding: 12px 20px; border-radius: 6px; cursor: pointer; font-weight: 600; transition: 0.3s;
        }
        .pricing-card button:hover { transform: scale(1.05); box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4); }

        /* Modal */
        .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); justify-content: center; align-items: center; z-index: 1500; }
        .modal-content { background: white; padding: 30px; border-radius: 10px; width: 90%; max-width: 400px; position: relative; }
        .close { position: absolute; top: 10px; right: 15px; cursor: pointer; font-size: 1.2rem; }
        form input, form textarea { width: 100%; padding: 8px; margin: 5px 0 15px; border-radius: 5px; border: 1px solid #ccc; }
        form button { width: 100%; padding: 10px; background-color: #3b82f6; border: none; color: white; font-weight: 600; border-radius: 6px; cursor: pointer; }

        /* Footer */
        footer { text-align: center; background: #0f1724; color: #9ca3af; padding: 20px 10px; display: flex; justify-content: center; align-items: center; gap: 12px; }
        .fb-link { color: #3b82f6; font-weight: 600; text-decoration: none; }
        .fb-link:hover { color: #60a5fa; }

        /* Scroll Up Button */
        #scrollUp { display: none; position: fixed; bottom: 40px; right: 20px; z-index: 1000; background: #3b82f6; color: #fff; border: none; border-radius: 50%; width: 45px; height: 45px; font-size: 22px; cursor: pointer; box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); transition: 0.3s; }
        #scrollUp:hover { background: #2563eb; }

        .how-it-works-horizontal {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
            max-width: 1200px;
            margin: 50px auto;
            font-family: 'Poppins', sans-serif;
            flex-wrap: wrap;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            flex: 1;
            min-width: 150px;
        }

        .icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 15px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .step-1 { background: #fb8c00; }
        .step-2 { background: #fbc02d; }
        .step-3 { background: #fb8c00; }
        .step-4 { background: #fbc02d; }
        .step-5 { background: #fb8c00; }
        .step-6 { background: #fbc02d; }

        h3 {
            margin: 0 0 8px;
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }

        p {
            margin: 0;
            color: #555;
            font-size: 14px;
            line-height: 1.5;
        }

        /* How It Works Section spacing */
        .how-it-works-section {
            margin-top: 80px; /* Desktop spacing */
            padding-bottom: 60px; /* Optional: extra spacing at the bottom */
        }

        /* Responsive for smaller screens */
        @media (max-width: 768px) {
            .how-it-works-section {
                margin-top: 50px; /* Less spacing on mobile for better flow */
                padding-bottom: 40px;
            }
        }

