                                                                                                        * {
                                                                                                            overflow-x: hidden;
                                                                                                            box-sizing: border-box;
                                                                                                            margin: 0;
                                                                                                            padding: 0;
                                                                                                            scroll-behavior: smooth;
                                                                                                        }
                                                                                                        
                                                                                                        html,
                                                                                                        body {
                                                                                                            max-width: 100vw;
                                                                                                            overflow-x: hidden;
                                                                                                        }
                                                                                                        
                                                                                                        .active-page {
                                                                                                            background-color: #a5acaf;
                                                                                                        }
                                                                                                        
                                                                                                        body {
                                                                                                            flex-direction: column;
                                                                                                            overflow-x: hidden;
                                                                                                            font-family: "Poppins", sans-serif;
                                                                                                            position: relative;
                                                                                                        }
                                                                                                        
                                                                                                        #navigation-bar {
                                                                                                            position: fixed;
                                                                                                            top: 2vh;
                                                                                                            left: 50%;
                                                                                                            transform: translateX(-50%);
                                                                                                            width: 80vw;
                                                                                                            max-width: 1200px;
                                                                                                            display: flex;
                                                                                                            justify-content: space-between;
                                                                                                            align-items: center;
                                                                                                            padding: 1rem 2vw;
                                                                                                            background: #0a2640;
                                                                                                            background: #5ae0f2;
                                                                                                            background: #1972CE;
                                                                                                            background: linear-gradient(90deg, rgba(25, 114, 206, 1) 0%, rgba(106, 219, 247, 1) 50%, rgba(25, 114, 206, 1) 100%);
                                                                                                            color: white;
                                                                                                            z-index: 1;
                                                                                                            border-radius: 12px;
                                                                                                            box-shadow: 0 0 3px gray, 0 0 7px gray;
                                                                                                        }
                                                                                                        
                                                                                                        .logo {
                                                                                                            text-shadow: 0 0 10px rgb(118, 149, 173);
                                                                                                            font-size: 2rem;
                                                                                                            font-family: "Urbanist";
                                                                                                            color: rgb(255, 255, 255);
                                                                                                        }
                                                                                                        
                                                                                                        .site-info,
                                                                                                        .contact-info {
                                                                                                            color: #000000;
                                                                                                            display: flex;
                                                                                                            align-items: center;
                                                                                                            gap: 0.5rem;
                                                                                                            flex-wrap: nowrap;
                                                                                                        }
                                                                                                        
                                                                                                        .site-info a {
                                                                                                            text-decoration: none;
                                                                                                            color: rgb(0, 0, 0);
                                                                                                            font-family: "Roboto", sans-serif;
                                                                                                            font-size: 1.1rem;
                                                                                                            padding: 0.5rem 0.5rem;
                                                                                                            transition: 0.3s;
                                                                                                        }
                                                                                                        
                                                                                                        .site-info a:hover {
                                                                                                            background-color: #174aa7a9;
                                                                                                            color: white;
                                                                                                            border-radius: 5px;
                                                                                                        }
                                                                                                        
                                                                                                        .site-info a:active {
                                                                                                            background-color: #000000;
                                                                                                        }
                                                                                                        
                                                                                                        .contact-info i {
                                                                                                            height: 60%;
                                                                                                        }
                                                                                                        
                                                                                                        .contact-info i {
                                                                                                            height: 30;
                                                                                                            font-size: 1.5rem;
                                                                                                            line-height: 1;
                                                                                                            vertical-align: middle;
                                                                                                        }
                                                                                                        /* PATCH: Fix icon scaling bug causing scrollbars */
                                                                                                        /* Keep existing styling intact */
                                                                                                        
                                                                                                        .contact-info i {
                                                                                                            font-size: 1.4rem;
                                                                                                            display: inline-block;
                                                                                                            transition: transform 0.2s ease;
                                                                                                            transform-origin: center;
                                                                                                            line-height: 1;
                                                                                                            vertical-align: middle;
                                                                                                            color: white;
                                                                                                        }
                                                                                                        
                                                                                                        .contact-info i:hover {}
                                                                                                        /* Prevent icon hover overflow from creating scrollbars */
                                                                                                        
                                                                                                        #navigation-bar {
                                                                                                            overflow: hidden;
                                                                                                            max-height: 80px;
                                                                                                            /* Adjust to your actual nav height if needed */
                                                                                                        }
                                                                                                        /* Ensure root doesn't allow horizontal scroll */
                                                                                                        
                                                                                                        html,
                                                                                                        body {
                                                                                                            overflow-x: hidden;
                                                                                                            max-width: 100vw;
                                                                                                        }
                                                                                                        
                                                                                                        .logo:hover {
                                                                                                            cursor: pointer;
                                                                                                        }
                                                                                                        
                                                                                                        .logo-link {
                                                                                                            text-decoration: none;
                                                                                                        }
                                                                                                        
                                                                                                        .contact-info button {
                                                                                                            font-family: "Poppins", sans-serif;
                                                                                                            font-weight: 800;
                                                                                                            font-style: normal;
                                                                                                            background-image: linear-gradient(to right, #a5acaf 0%, #cbd1d6 51%, #b4b9bb 100%);
                                                                                                            margin-left: 10px;
                                                                                                            padding: 10px 20px;
                                                                                                            background-size: 200% auto;
                                                                                                            color: rgb(36, 36, 36);
                                                                                                            border: none;
                                                                                                            border-radius: 10px;
                                                                                                            box-shadow: 0 0 10px #eee;
                                                                                                            cursor: pointer;
                                                                                                            transition: 0.5s;
                                                                                                            text-transform: uppercase;
                                                                                                        }
                                                                                                        
                                                                                                        .contact-info button:hover {
                                                                                                            background-position: right center;
                                                                                                        }
                                                                                                        
                                                                                                        .hamburger {
                                                                                                            display: none;
                                                                                                            flex-direction: column;
                                                                                                            justify-content: space-between;
                                                                                                            width: 25px;
                                                                                                            height: 20px;
                                                                                                            cursor: pointer;
                                                                                                            z-index: 1111;
                                                                                                        }
                                                                                                        
                                                                                                        .hamburger span {
                                                                                                            height: 3px;
                                                                                                            width: 100%;
                                                                                                            background: white;
                                                                                                            border-radius: 2px;
                                                                                                        }
                                                                                                        
                                                                                                        .sidebar {
                                                                                                            position: fixed;
                                                                                                            top: 0;
                                                                                                            left: 0;
                                                                                                            height: 100vh;
                                                                                                            width: 100vw;
                                                                                                            background: rgba(0, 0, 0, 0.85);
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            align-items: center;
                                                                                                            justify-content: flex-start;
                                                                                                            padding: 2rem;
                                                                                                            transform: translateX(-100%);
                                                                                                            transition: transform 0.4s ease;
                                                                                                            z-index: 1100;
                                                                                                        }
                                                                                                        
                                                                                                        .sidebar.active {
                                                                                                            transform: translateX(0);
                                                                                                        }
                                                                                                        
                                                                                                        .sidebar a,
                                                                                                        .sidebar button {
                                                                                                            color: white;
                                                                                                            margin: 1rem 0;
                                                                                                            text-decoration: none;
                                                                                                            font-size: 1.2rem;
                                                                                                            border: none;
                                                                                                            background: none;
                                                                                                            text-align: left;
                                                                                                        }
                                                                                                        
                                                                                                        .sidebar-social-icons {
                                                                                                            display: flex;
                                                                                                            gap: 1rem;
                                                                                                            margin-top: 2rem;
                                                                                                            margin-bottom: 1rem;
                                                                                                            justify-content: center;
                                                                                                            width: 100%;
                                                                                                        }
                                                                                                        
                                                                                                        .sidebar-social-icons a {
                                                                                                            color: white;
                                                                                                            font-size: 1.5rem;
                                                                                                            text-decoration: none;
                                                                                                        }
                                                                                                        
                                                                                                        .close-btn {
                                                                                                            display: none;
                                                                                                            font-size: 2rem;
                                                                                                            color: white;
                                                                                                            align-self: flex-end;
                                                                                                            cursor: pointer;
                                                                                                            background: none;
                                                                                                            border: none;
                                                                                                            margin-bottom: 1rem;
                                                                                                            z-index: 1000;
                                                                                                        }
                                                                                                        
                                                                                                        .close-btn:hover {
                                                                                                            color: red;
                                                                                                        }
                                                                                                        
                                                                                                        .mobile-audit-link {
                                                                                                            display: none;
                                                                                                        }
                                                                                                        
                                                                                                        .desktop-audit-button {
                                                                                                            display: block;
                                                                                                        }
                                                                                                        
                                                                                                        .pricing-page {
                                                                                                            min-height: 200vh;
                                                                                                        }
                                                                                                        
                                                                                                        .heading-top {
                                                                                                            align-items: center;
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            justify-self: center;
                                                                                                            margin-top: 8%;
                                                                                                            text-wrap: 2;
                                                                                                            min-width: 80%;
                                                                                                        }
                                                                                                        
                                                                                                        .heading-top h1 {
                                                                                                            margin-top: 5%;
                                                                                                            width: 70%;
                                                                                                            text-align: left;
                                                                                                            font-family: "Urbanist";
                                                                                                            font-size: 2.2em;
                                                                                                        }
                                                                                                        
                                                                                                        .heading-top p {
                                                                                                            margin: 1%;
                                                                                                            width: 70%;
                                                                                                            text-align: left;
                                                                                                            font-family: "Poppins";
                                                                                                            font-size: 1.2em;
                                                                                                        }
                                                                                                        
                                                                                                        .box-container1 {
                                                                                                            justify-content: center;
                                                                                                            flex-wrap: wrap;
                                                                                                            flex: 1 1;
                                                                                                            gap: 2em;
                                                                                                            min-width: 10%;
                                                                                                            min-height: 70vh;
                                                                                                            display: flex;
                                                                                                            flex-direction: row;
                                                                                                        }
                                                                                                        
                                                                                                        #spec-box {
                                                                                                            color: #000000;
                                                                                                            background-color: hsla(192, 100%, 79%, 0.984);
                                                                                                        }
                                                                                                        
                                                                                                        .boxx {
                                                                                                            align-items: center;
                                                                                                            box-shadow: 3px 3px 6px slategray;
                                                                                                            box-sizing: border-box;
                                                                                                            width: 15%;
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            justify-content: center;
                                                                                                            box-shadow: 2px 2px 6px gray;
                                                                                                            border-radius: 10%;
                                                                                                            background: rgb(250, 247, 247);
                                                                                                        }
                                                                                                        
                                                                                                        .buy-button {
                                                                                                            color: #000000;
                                                                                                            text-decoration: none;
                                                                                                        }
                                                                                                        /*
                                                                                                        .card-title {
                                                                                                            border: 2px solid red;
                                                                                                            justify-content: center;
                                                                                                            display: flex;
                                                                                                        }
                                                                                                        
                                                                                                        .boxx h1 {
                                                                                                            font-family: sans-serif;
                                                                                                            font-weight: 900;
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        
                                                                                                        .card-details {
                                                                                                            border: 2px solid red;
                                                                                                            display: flex;
                                                                                                            max-width: 90%;
                                                                                                        }
                                                                                                        
                                                                                                        .boxx p {
                                                                                                            font-size: 0.9em;
                                                                                                            font-family: "Poppins";
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        
                                                                                                        .price {
                                                                                                            display: inline;
                                                                                                            flex-direction: row;
                                                                                                            justify-content: center;
                                                                                                            display: flex;
                                                                                                        }
                                                                                                        
                                                                                                        .one-time {
                                                                                                            color: #a5acaf;
                                                                                                        }
                                                                                                        */
                                                                                                        
                                                                                                        .boxx h3 {
                                                                                                            color: #bec1c2;
                                                                                                            font-family: "Poppins";
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        
                                                                                                        .list-details {
                                                                                                            min-width: 90%;
                                                                                                            justify-content: center;
                                                                                                            align-items: center;
                                                                                                            display: flex;
                                                                                                        }
                                                                                                        
                                                                                                        .boxx ul {
                                                                                                            font-size: medium;
                                                                                                            margin: 0;
                                                                                                            list-style-image: url('data:image/svg+xml,<svg width="16px" height="16px" viewBox="0 0 1024 1024" class="icon" version="1.1" xmlns="http://www.w3.org/2000/svg" fill="%23000000"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M511.891456 928.549888c229.548032 0 415.634432-186.0864 415.634432-415.634432C927.525888 283.3664 741.439488 97.28 511.890432 97.28 282.343424 97.28 96.258048 283.3664 96.258048 512.915456c0 229.548032 186.084352 415.634432 415.634432 415.634432" fill="%231EF1FC"></path><path d="M436.571136 707.376128l330.3936-330.3936c5.506048-5.507072 8.571904-12.803072 8.633344-20.544512 0.060416-7.85408-2.961408-15.235072-8.511488-20.784128 0.001024-0.012288-0.001024-0.002048-0.001024-0.002048l-0.001024-0.001024c-5.410816-5.409792-12.978176-8.489984-20.687872-8.460288-7.810048 0.032768-15.13984 3.081216-20.640768 8.58112l-309.11488 309.116928-94.99648-94.998528c-5.501952-5.501952-12.833792-8.5504-20.642816-8.58112h-0.115712c-7.69536 0-15.186944 3.08224-20.569088 8.465408-11.360256 11.36128-11.307008 29.899776 0.118784 41.325568l109.924352 109.924352a29.017088 29.017088 0 0 0 4.883456 6.474752c5.658624 5.6576 13.095936 8.482816 20.550656 8.481792a29.31712 29.31712 0 0 0 20.77696-8.604672M511.891456 97.28C282.3424 97.28 96.256 283.3664 96.256 512.915456s186.0864 415.634432 415.635456 415.634432c229.548032 0 415.634432-186.085376 415.634432-415.634432C927.525888 283.365376 741.439488 97.28 511.891456 97.28m0 40.96c50.597888 0 99.661824 9.901056 145.82784 29.427712 44.61056 18.868224 84.683776 45.889536 119.10656 80.31232 34.422784 34.422784 61.444096 74.496 80.313344 119.107584 19.525632 46.164992 29.426688 95.228928 29.426688 145.82784s-9.901056 99.662848-29.426688 145.82784c-18.869248 44.61056-45.89056 84.6848-80.313344 119.107584s-74.496 61.443072-119.10656 80.31232c-46.166016 19.526656-95.229952 29.426688-145.82784 29.426688-50.598912 0-99.662848-9.900032-145.828864-29.426688-44.61056-18.869248-84.683776-45.889536-119.10656-80.31232-34.422784-34.422784-61.444096-74.497024-80.313344-119.107584C147.117056 612.57728 137.216 563.514368 137.216 512.915456s9.901056-99.662848 29.426688-145.82784c18.869248-44.611584 45.89056-84.6848 80.313344-119.107584s74.496-61.444096 119.10656-80.31232C412.228608 148.140032 461.292544 138.24 511.891456 138.24" fill="%23FFFFFF"></path></g></svg>');
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            padding-left: 1.4em;
                                                                                                            font-family: "Poppins";
                                                                                                        }
                                                                                                        
                                                                                                        .box-container1 {
                                                                                                            display: flex;
                                                                                                            justify-content: center;
                                                                                                            flex-wrap: wrap;
                                                                                                            gap: 2em;
                                                                                                            padding: 2em;
                                                                                                        }
                                                                                                        
                                                                                                        .boxx {
                                                                                                            width: 300px;
                                                                                                            border: 1px solid #ccc;
                                                                                                            border-radius: 8px;
                                                                                                            background-color: #fff;
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            padding: 1.5em;
                                                                                                            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                                                                                                            transition: transform 0.3s ease;
                                                                                                        }
                                                                                                        
                                                                                                        .boxx:hover {
                                                                                                            transform: translateY(-5px);
                                                                                                        }
                                                                                                        
                                                                                                        .card-title {
                                                                                                            font-family: Arial, Helvetica, sans-serif;
                                                                                                            text-align: center;
                                                                                                            font-size: 1rem;
                                                                                                            margin-bottom: 1em;
                                                                                                            color: gray;
                                                                                                        }
                                                                                                        
                                                                                                        .card-details p {
                                                                                                            font-size: 0.95rem;
                                                                                                            line-height: 1.4;
                                                                                                            margin-bottom: 1em;
                                                                                                        }
                                                                                                        
                                                                                                        .list-details ul {
                                                                                                            list-style-position: inside;
                                                                                                            padding-left: 0;
                                                                                                            font-size: 0.95rem;
                                                                                                            line-height: 1.6;
                                                                                                            margin-bottom: 1em;
                                                                                                        }
                                                                                                        
                                                                                                        .list-details ul li {
                                                                                                            margin-bottom: 0.5em;
                                                                                                        }
                                                                                                        
                                                                                                        .price {
                                                                                                            display: flex;
                                                                                                            align-items: baseline;
                                                                                                            justify-content: center;
                                                                                                            gap: 0.3em;
                                                                                                            font-size: 1.8rem;
                                                                                                            font-weight: bold;
                                                                                                            margin-top: 1em;
                                                                                                        }
                                                                                                        
                                                                                                        .one-time {
                                                                                                            text-align: center;
                                                                                                            font-size: 0.9rem;
                                                                                                            color: #666;
                                                                                                            margin-top: 0.3em;
                                                                                                        }
                                                                                                        
                                                                                                        hr {
                                                                                                            border: none;
                                                                                                            border-top: 1px solid #ccc;
                                                                                                            margin: 1em 0;
                                                                                                        }
                                                                                                        /**/
                                                                                                        
                                                                                                        .separate-box-container {
                                                                                                            display: flex;
                                                                                                            padding: 2em 1em;
                                                                                                        }
                                                                                                        
                                                                                                        .separate-box-container .boxx {
                                                                                                            width: 80vw;
                                                                                                            max-width: 1200px;
                                                                                                            min-height: 150px;
                                                                                                            border-radius: 10px;
                                                                                                            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            justify-content: center;
                                                                                                            box-sizing: border-box;
                                                                                                        }
                                                                                                        /* Force list in separate box to be left-aligned */
                                                                                                        
                                                                                                        .separate-box-container .list-details {
                                                                                                            display: block;
                                                                                                            /* Override .list-details flex */
                                                                                                        }
                                                                                                        
                                                                                                        .separate-box-container .list-details ul {
                                                                                                            display: block !important;
                                                                                                            text-align: left !important;
                                                                                                            list-style-position: outside;
                                                                                                        }
                                                                                                        
                                                                                                        .separate-box-container .list-details ul li {
                                                                                                            text-align: left !important;
                                                                                                        }
                                                                                                        
                                                                                                        .separate-box-container .card-title,
                                                                                                        .separate-box-container .card-details p,
                                                                                                        .separate-box-container .list-details ul,
                                                                                                        .separate-box-container .price,
                                                                                                        .separate-box-container .one-time,
                                                                                                        .separate-box-container .buy-button {
                                                                                                            text-align: left;
                                                                                                            align-self: flex-start;
                                                                                                        }
                                                                                                        
                                                                                                        .separate-box-container {
                                                                                                            display: flex;
                                                                                                            justify-content: center;
                                                                                                            /* centers the inner box horizontally */
                                                                                                            align-items: center;
                                                                                                            width: 100%;
                                                                                                            margin-top: 3em;
                                                                                                        }
                                                                                                        
                                                                                                        .buy-button {
                                                                                                            margin-top: 1em;
                                                                                                            padding: 0.7em 1.5em;
                                                                                                            font-size: 1rem;
                                                                                                            font-weight: 600;
                                                                                                            font-family: "Poppins", sans-serif;
                                                                                                            text-align: center;
                                                                                                            border-radius: 8px;
                                                                                                            border: none;
                                                                                                            cursor: pointer;
                                                                                                            background: #65D6F4;
                                                                                                            background: linear-gradient(90deg, rgba(101, 214, 244, 1) 0%, rgba(77, 255, 252, 1) 50%, rgba(101, 214, 244, 1) 100%);
                                                                                                            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
                                                                                                            transition: background-color 0.3s ease, transform 0.2s ease;
                                                                                                        }
                                                                                                        
                                                                                                        .buy-button:hover {
                                                                                                            background-color: #5fffff;
                                                                                                            transform: translateY(-2px);
                                                                                                        }
                                                                                                        
                                                                                                        .buy-button-long {
                                                                                                            margin-top: 1em;
                                                                                                            padding: 0.7em 10.5em;
                                                                                                            font-size: 1rem;
                                                                                                            font-weight: 600;
                                                                                                            font-family: "Poppins", sans-serif;
                                                                                                            text-align: center;
                                                                                                            border-radius: 8px;
                                                                                                            border: none;
                                                                                                            cursor: pointer;
                                                                                                            background: #65D6F4;
                                                                                                            background: linear-gradient(90deg, rgba(101, 214, 244, 1) 0%, rgba(77, 255, 252, 1) 50%, rgba(101, 214, 244, 1) 100%);
                                                                                                            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
                                                                                                            transition: background-color 0.3s ease, transform 0.2s ease;
                                                                                                        }
                                                                                                        
                                                                                                        .buy-button-long:hover {
                                                                                                            background-color: #d2d2d2;
                                                                                                            transform: translateY(-2px);
                                                                                                        }
                                                                                                        
                                                                                                        .boxx {
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            justify-content: space-between;
                                                                                                        }
                                                                                                        
                                                                                                        .divider-line {
                                                                                                            width: 100%;
                                                                                                            height: 1px;
                                                                                                            background-color: #ccc;
                                                                                                            border: none;
                                                                                                            margin: 1em 0;
                                                                                                            opacity: 0.6;
                                                                                                        }
                                                                                                        
                                                                                                        .short-box-container {
                                                                                                            display: flex;
                                                                                                            justify-content: center;
                                                                                                            gap: 2em;
                                                                                                            flex-wrap: nowrap;
                                                                                                            /* prevent wrapping */
                                                                                                            padding: 2em 1em;
                                                                                                        }
                                                                                                        
                                                                                                        .short-box {
                                                                                                            flex: 1 1 220px;
                                                                                                            max-width: 220px;
                                                                                                            min-height: 200px;
                                                                                                            height: auto;
                                                                                                            /* ✅ auto height removes overflow */
                                                                                                            background-color: #ffffff;
                                                                                                            border-radius: 12px;
                                                                                                            box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
                                                                                                            padding: 1em;
                                                                                                            text-align: center;
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            justify-content: center;
                                                                                                            align-items: center;
                                                                                                            transition: transform 0.2s ease;
                                                                                                            box-sizing: border-box;
                                                                                                            overflow: visible;
                                                                                                            /* ✅ important */
                                                                                                        }
                                                                                                        
                                                                                                        .short-box i {
                                                                                                            margin-bottom: 0.5em;
                                                                                                            color: #1972ce;
                                                                                                        }
                                                                                                        
                                                                                                        .short-box h3 {
                                                                                                            margin-bottom: 0.5em;
                                                                                                            font-size: 1.1rem;
                                                                                                        }
                                                                                                        
                                                                                                        .short-box p {
                                                                                                            font-size: 0.9rem;
                                                                                                            color: #444;
                                                                                                            line-height: 1.4;
                                                                                                            overflow: visible;
                                                                                                            /* ✅ show full text */
                                                                                                            white-space: normal;
                                                                                                            /* ✅ allow wrapping */
                                                                                                            word-wrap: break-word;
                                                                                                            /* ✅ prevent overflow */
                                                                                                        }
                                                                                                        /* Horizontal box with centered content */
                                                                                                        
                                                                                                        .centered-horizontal-box {
                                                                                                            align-items: center !important;
                                                                                                            text-align: center !important;
                                                                                                        }
                                                                                                        /* 🔹 Short Icon Boxes */
                                                                                                        
                                                                                                        .short-box-container {
                                                                                                            display: flex;
                                                                                                            justify-content: center;
                                                                                                            gap: 2em;
                                                                                                            flex-wrap: wrap;
                                                                                                            padding: 2em 1em;
                                                                                                        }
                                                                                                        
                                                                                                        .short-box {
                                                                                                            flex: 1 1 220px;
                                                                                                            max-width: 220px;
                                                                                                            min-height: 200px;
                                                                                                            height: auto;
                                                                                                            /* ✅ auto height removes overflow */
                                                                                                            background-color: #ffffff;
                                                                                                            border-radius: 12px;
                                                                                                            box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
                                                                                                            padding: 1em;
                                                                                                            text-align: center;
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            justify-content: center;
                                                                                                            align-items: center;
                                                                                                            transition: transform 0.2s ease;
                                                                                                            box-sizing: border-box;
                                                                                                            overflow: visible;
                                                                                                            /* ✅ important */
                                                                                                        }
                                                                                                        
                                                                                                        .short-box:hover {
                                                                                                            transform: translateY(-5px);
                                                                                                        }
                                                                                                        
                                                                                                        .short-box i {
                                                                                                            margin-bottom: 0.5em;
                                                                                                            color: #1972ce;
                                                                                                        }
                                                                                                        
                                                                                                        .short-box h3 {
                                                                                                            margin-bottom: 0.5em;
                                                                                                            font-size: 1.1rem;
                                                                                                            font-weight: 600;
                                                                                                        }
                                                                                                        
                                                                                                        .short-box p {
                                                                                                            font-size: 0.9rem;
                                                                                                            color: #444;
                                                                                                            line-height: 1.4;
                                                                                                        }
                                                                                                        /* 🔹 Centered Horizontal Box With List */
                                                                                                        
                                                                                                        .centered-horizontal-box {
                                                                                                            align-items: center;
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        
                                                                                                        .centered-horizontal-box .card-details p {
                                                                                                            justify-items: left;
                                                                                                            text-align: left;
                                                                                                            font-size: 0.95rem;
                                                                                                            margin-bottom: 1em;
                                                                                                        }
                                                                                                        
                                                                                                        .centered-horizontal-box .list-details ul {
                                                                                                            list-style-position: inside;
                                                                                                            padding-left: 0;
                                                                                                            margin-bottom: 1em;
                                                                                                            text-align: left;
                                                                                                        }
                                                                                                        
                                                                                                        .centered-horizontal-box .list-details ul li {
                                                                                                            margin-bottom: 0.4em;
                                                                                                            font-size: 0.95rem;
                                                                                                            color: #333;
                                                                                                        }
                                                                                                        /* Optional line */
                                                                                                        
                                                                                                        .divider-line {
                                                                                                            width: 40%;
                                                                                                            height: 1px;
                                                                                                            background-color: #ccc;
                                                                                                            border: none;
                                                                                                            margin: 1.5em auto;
                                                                                                            opacity: 0.5;
                                                                                                        }
                                                                                                        
                                                                                                        #sshh1 {
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        
                                                                                                        #sshh2 {
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        
                                                                                                        #ssgg3 {
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        
                                                                                                        #ssgg4 {
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        /* ✅ Force default bullet points ONLY in last box */
                                                                                                        
                                                                                                        .use-default-bullets .list-details ul {
                                                                                                            list-style: none;
                                                                                                            padding-left: 1.5em;
                                                                                                            margin: 0;
                                                                                                        }
                                                                                                        
                                                                                                        .use-default-bullets .list-details ul li {
                                                                                                            position: relative;
                                                                                                            padding-left: 1em;
                                                                                                            margin-bottom: 0.6em;
                                                                                                        }
                                                                                                        
                                                                                                        .use-default-bullets .list-details ul li::before {
                                                                                                            content: '';
                                                                                                            position: absolute;
                                                                                                            left: 0;
                                                                                                            top: 0.5em;
                                                                                                            width: 6px;
                                                                                                            height: 6px;
                                                                                                            background-color: black;
                                                                                                            /* looks like a bullet */
                                                                                                            border-radius: 50%;
                                                                                                        }
                                                                                                        
                                                                                                        .boxx:hover {
                                                                                                            transform: translateY(-6px) scale(1.02);
                                                                                                            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
                                                                                                            transition: all 0.3s ease;
                                                                                                        }
                                                                                                        /* Stylish scrollbar for webkit browsers */
                                                                                                        
                                                                                                        body::-webkit-scrollbar {
                                                                                                            width: 8px;
                                                                                                        }
                                                                                                        
                                                                                                        body::-webkit-scrollbar-track {
                                                                                                            background: #f0f0f0;
                                                                                                        }
                                                                                                        
                                                                                                        body::-webkit-scrollbar-thumb {
                                                                                                            background-color: #bbb;
                                                                                                            border-radius: 10px;
                                                                                                        }
                                                                                                        
                                                                                                        .contact-info i,
                                                                                                        .sidebar-social-icons i {
                                                                                                            font-size: 1.4rem;
                                                                                                            display: inline-block;
                                                                                                            transition: transform 0.2s ease;
                                                                                                            transform-origin: center;
                                                                                                            vertical-align: middle;
                                                                                                            line-height: 1;
                                                                                                        }
                                                                                                        
                                                                                                        .about-page1 {
                                                                                                            display: flex;
                                                                                                            flex-direction: column;
                                                                                                            justify-items: center;
                                                                                                            align-items: center;
                                                                                                            margin-top: 10%;
                                                                                                        }
                                                                                                        /* Horizontal Box (wide-box) */
                                                                                                        
                                                                                                        .wide-box {
                                                                                                            justify-items: center;
                                                                                                            width: 80vw;
                                                                                                            margin: 3em auto;
                                                                                                            padding: 2em;
                                                                                                            background-color: #fff;
                                                                                                            border-radius: 12px;
                                                                                                            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
                                                                                                            text-align: center;
                                                                                                        }
                                                                                                        
                                                                                                        .wide-box h2 {
                                                                                                            font-size: 2.8rem;
                                                                                                            margin-bottom: 0.5em;
                                                                                                        }
                                                                                                        
                                                                                                        .wide-box p {
                                                                                                            margin-bottom: 1%;
                                                                                                            width: 70%;
                                                                                                            min-width: 40%;
                                                                                                            font-size: 1.4rem;
                                                                                                            color: #444;
                                                                                                        }
                                                                                                        /* Section Heading */
                                                                                                        
                                                                                                        .section-title {
                                                                                                            text-align: center;
                                                                                                            margin: 4em auto 1.5em;
                                                                                                            font-size: 2rem;
                                                                                                            font-weight: bold;
                                                                                                        }
                                                                                                        /* Grid of Icon Boxes */
                                                                                                        
                                                                                                        .icon-grid {
                                                                                                            justify-content: center;
                                                                                                            max-width: 75vw;
                                                                                                            display: flex;
                                                                                                            flex-wrap: wrap;
                                                                                                            align-content: center;
                                                                                                            gap: 2em;
                                                                                                            padding: 0 2em;
                                                                                                            margin-bottom: 4em;
                                                                                                        }
                                                                                                        
                                                                                                        .icon-box {
                                                                                                            width: 19vw;
                                                                                                            min-width: 20vw;
                                                                                                            max-width: 180px;
                                                                                                            padding: 1.5em;
                                                                                                            background-color: #f8f8f8;
                                                                                                            border-radius: 10px;
                                                                                                            text-align: center;
                                                                                                            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                                                                                                            transition: transform 0.2s ease;
                                                                                                        }
                                                                                                        
                                                                                                        .icon-box:hover {
                                                                                                            transform: translateY(-5px);
                                                                                                        }
                                                                                                        
                                                                                                        .icon-box i {
                                                                                                            font-size: 2rem;
                                                                                                            margin-bottom: 0.6em;
                                                                                                            color: #333;
                                                                                                        }
                                                                                                        
                                                                                                        .icon-box h3 {
                                                                                                            font-size: 1.1rem;
                                                                                                            margin-bottom: 0.4em;
                                                                                                        }
                                                                                                        
                                                                                                        .icon-box p {
                                                                                                            font-size: 0.95rem;
                                                                                                            color: #555;
                                                                                                        }
                                                                                                        
                                                                                                        .asdasdasd222 {}
                                                                                                        
                                                                                                        @media (max-width: 768px) {
                                                                                                            .icon-grid {
                                                                                                                flex-direction: row;
                                                                                                                justify-content: center;
                                                                                                            }
                                                                                                            .icon-box {
                                                                                                                width: 40vw;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 500px) {
                                                                                                            .icon-box {
                                                                                                                width: 80vw;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 768px) {
                                                                                                            .short-box {
                                                                                                                flex: 1 1 45%;
                                                                                                                max-width: 45%;
                                                                                                                height: auto;
                                                                                                                min-height: 220px;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 768px) {
                                                                                                            .buy-button-long {
                                                                                                                padding: 1rem 3rem;
                                                                                                            }
                                                                                                            .separate-box-container .boxx {
                                                                                                                width: 90vw;
                                                                                                                min-height: auto;
                                                                                                                padding: 1.2em;
                                                                                                            }
                                                                                                            .separate-box-container .boxx h1 {
                                                                                                                font-size: 1.2rem;
                                                                                                                text-align: center;
                                                                                                            }
                                                                                                            .separate-box-container .boxx p,
                                                                                                            .separate-box-container .boxx ul {
                                                                                                                font-size: 0.95rem;
                                                                                                                text-align: center;
                                                                                                            }
                                                                                                            .separate-box-container .boxx ul {
                                                                                                                padding-left: 0;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 1400px) {
                                                                                                            .heading-top {
                                                                                                                margin-top: 10%;
                                                                                                            }
                                                                                                            .boxx {
                                                                                                                width: 30%;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 1000px) {
                                                                                                            .heading-top {
                                                                                                                margin-top: 13%;
                                                                                                            }
                                                                                                            .boxx {
                                                                                                                width: 40%;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 700px) {
                                                                                                            .heading-top {
                                                                                                                margin-top: 30%;
                                                                                                            }
                                                                                                            .boxx {
                                                                                                                width: 80%;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 700px) {
                                                                                                            .heading-top {
                                                                                                                margin-top: 40%;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 750px) {
                                                                                                            #navigation-bar {
                                                                                                                height: 9vh;
                                                                                                                box-shadow: 0 0 3px gray, 0 0 7px gray;
                                                                                                            }
                                                                                                            .logo {
                                                                                                                font-size: 20px;
                                                                                                            }
                                                                                                            .mobile-audit-link {
                                                                                                                display: block;
                                                                                                                margin: 1rem 0;
                                                                                                                font-size: 1.2rem;
                                                                                                                color: white;
                                                                                                                text-decoration: none;
                                                                                                            }
                                                                                                            .desktop-audit-button {
                                                                                                                display: none;
                                                                                                            }
                                                                                                            .hamburger {
                                                                                                                display: flex;
                                                                                                            }
                                                                                                            .site-info,
                                                                                                            .contact-info {
                                                                                                                display: none;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 842px) {
                                                                                                            .contact-info button {
                                                                                                                display: none;
                                                                                                            }
                                                                                                        }
                                                                                                        
                                                                                                        @media (max-width: 750px) {
                                                                                                            .sidebar.active~.content-body #but-1 {
                                                                                                                display: none;
                                                                                                            }
                                                                                                        }
                                                                                                        /* FIX: Navigation bar and layout responsiveness */
                                                                                                        
                                                                                                        @media (max-width: 800px) {
                                                                                                            #navigation-bar {
                                                                                                                left: 50%;
                                                                                                                transform: translateX(-50%);
                                                                                                                width: 95vw;
                                                                                                                flex-wrap: wrap;
                                                                                                                justify-content: center;
                                                                                                                gap: 1rem;
                                                                                                                height: 12vh;
                                                                                                            }
                                                                                                            .hamburger {
                                                                                                                position: absolute;
                                                                                                                left: 1rem;
                                                                                                            }
                                                                                                            .logo {
                                                                                                                width: 100%;
                                                                                                                text-align: center;
                                                                                                            }
                                                                                                            .wide-box p {
                                                                                                                font-size: 0.9em;
                                                                                                            }
                                                                                                            .wide-box h1 {
                                                                                                                font-size: 0.4em;
                                                                                                            }
                                                                                                        }