/* Product Banner Styling */
                                .pq-product-banner img {
                                    width: 100%;
                                    height: 350px;
                                    object-fit: cover;
                                    border-radius: 12px;
                                }

                                /* Custom Table Styling */
                                .pq-custom-table {
                                    border-collapse: separate;
                                    border-spacing: 0;
                                    border: 1px solid #e9ecef;
                                    border-radius: 8px;
                                    overflow: hidden;
                                }

                                .pq-custom-table thead th {
                                    background-color: #15141c;
                                    /* Dark brand color */
                                    color: #ffffff;
                                    font-weight: 600;
                                    padding: 15px 20px;
                                    border: none;
                                    font-family: 'Unbounded', sans-serif;
                                    font-size: 14px;
                                }

                                .pq-custom-table tbody tr {
                                    transition: all 0.3s ease;
                                }

                                .pq-custom-table tbody td {
                                    padding: 15px 20px;
                                    border-bottom: 1px solid #e9ecef;
                                    color: #444;
                                    font-size: 15px;
                                }

                                /* Hover effect on table rows */
                                .pq-custom-table tbody tr:hover {
                                    background-color: #f8fcfd;
                                    /* Very light blue tint */
                                    transform: scale(1.005);
                                    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
                                }

                                .pq-custom-table tbody tr:last-child td {
                                    border-bottom: none;
                                }

                                .text-primary {
                                    color: #204d76 !important;
                                    /* Your brand blue */
                                }
















                                /* Landscape Card Styling */
                                .pq-landscape-card {
                                    background: #ffffff;
                                    border: 1px solid #f0f0f0;
                                    border-radius: 12px;
                                    overflow: hidden;
                                    transition: all 0.3s ease;
                                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
                                    position: relative;
                                }

                                .pq-landscape-card:hover {
                                    transform: translateY(-5px);
                                    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
                                    border-color: #204d76;
                                }

                                .pq-landscape-img-box {
                                    overflow: hidden;
                                    height: 100%;
                                }

                                .pq-landscape-img-box img {
                                    width: 100%;
                                    height: 280px;
                                    /* You can adjust this number to your preferred height */
                                    object-fit: cover;
                                    /* This is the magic property that prevents distortion */
                                    object-position: center;
                                    /* Keeps the focus on the middle of the image */
                                    border-radius: 12px 0 0 12px;
                                    /* Optional: Rounds the left corners to match the card */
                                }

                                .pq-landscape-card:hover .pq-landscape-img-box img {
                                    transform: scale(1.05);
                                }

                                .pq-landscape-content {
                                    padding: 30px;
                                }

                                .pq-landscape-content h5 {
                                    color: #15141c;
                                    font-weight: 700;
                                    margin-bottom: 15px;
                                    font-size: 1.25rem;
                                }

                                .pq-landscape-content p {
                                    color: #666;
                                    margin-bottom: 20px;
                                    line-height: 1.6;
                                }

                                /* Bullet List Styling inside Cards */
                                .pq-list-check {
                                    list-style: none;
                                    padding: 0;
                                    margin: 0;
                                    display: flex;
                                    flex-wrap: wrap;
                                    gap: 10px 20px;
                                }

                                .pq-list-check li {
                                    font-size: 14px;
                                    color: #444;
                                    font-weight: 500;
                                    display: flex;
                                    align-items: center;
                                }

                                .pq-list-check li i {
                                    color: #ff5e14;
                                    /* Brand Orange */
                                    margin-right: 8px;
                                    font-size: 12px;
                                }

                                /* Mobile Responsiveness */
                                @media (max-width: 767px) {
                                    .pq-landscape-img-box img {
                                        height: 200px;
                                        /* Slightly shorter on mobile phones */
                                        border-radius: 12px 12px 0 0;
                                        /* Adjusts rounding for stacked mobile view */
                                    }

                                    .pq-landscape-content {
                                        padding: 20px;
                                    }
                                }






                                /* Feature Box Styling */
                                .pq-feature-box {
                                    background: #ffffff;
                                    border: 1px solid #f0f0f0;
                                    padding: 30px 20px;
                                    border-radius: 8px;
                                    transition: all 0.3s ease;
                                }

                                .pq-feature-box:hover {
                                    border-color: #204d76;
                                    box-shadow: 0 10px 20px rgba(1, 108, 182, 0.08);
                                    transform: translateY(-5px);
                                }

                                .pq-feature-icon {
                                    width: 60px;
                                    height: 60px;
                                    background: #f8fcfd;
                                    /* Light blue */
                                    color: #204d76;
                                    border-radius: 50%;
                                    display: inline-flex;
                                    align-items: center;
                                    justify-content: center;
                                    font-size: 24px;
                                    transition: all 0.3s ease;
                                }

                                .pq-feature-box:hover .pq-feature-icon {
                                    background: #204d76;
                                    color: #ffffff;
                                }

                                /* Custom Accordion Styling */
                                .pq-custom-accordion .accordion-item {
                                    border: 1px solid #e9ecef;
                                    border-radius: 8px !important;
                                    margin-bottom: 15px;
                                    overflow: hidden;
                                    background: #fff;
                                }

                                .pq-custom-accordion .accordion-button {
                                    font-weight: 600;
                                    color: #15141c;
                                    background-color: #fff;
                                    padding: 20px;
                                    box-shadow: none !important;
                                }

                                .pq-custom-accordion .accordion-button:not(.collapsed) {
                                    color: #204d76;
                                    background-color: #f8fcfd;
                                }

                                .pq-custom-accordion .accordion-button::after {
                                    filter: grayscale(1);
                                    transition: transform 0.3s ease;
                                }

                                .pq-custom-accordion .accordion-button:not(.collapsed)::after {
                                    filter: invert(32%) sepia(99%) saturate(1906%) hue-rotate(185deg) brightness(96%) contrast(101%);
                                }

                                .pq-custom-accordion .accordion-body {
                                    padding: 20px;
                                    background-color: #fff;
                                    border-top: 1px solid #f0f0f0;
                                    line-height: 1.6;
                                }

                                /* Bottom CTA Styling */
                                .pq-product-cta {
                                    background: linear-gradient(135deg, #15141c 0%, #2a2835 100%);
                                    border-left: 5px solid #ff5e14;
                                }

                                .pq-btn-solid {
                                    background-color: #ff5e14;
                                    color: #fff;
                                    padding: 10px 25px;
                                    font-weight: 600;
                                    border-radius: 5px;
                                    transition: 0.3s;
                                }

                                .pq-btn-solid:hover {
                                    background-color: #e04b0b;
                                    color: #fff;
                                }

                                .pq-btn-outline {
                                    background-color: transparent;
                                    color: #fff;
                                    border: 1px solid #fff;
                                    padding: 10px 25px;
                                    font-weight: 600;
                                    border-radius: 5px;
                                    transition: 0.3s;
                                }

                                .pq-btn-outline:hover {
                                    background-color: #fff;
                                    color: #15141c;
                                }

















                                /* Sticky Sidebar Logic */
        .pq-sidebar-sticky {
            position: -webkit-sticky;
            position: sticky;
            top: 100px;
            /* Adjust based on your header height */
            z-index: 10;
        }

        /* Sidebar Styling */
        .pq-widget {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }

        .pq-widget-title {
            font-family: 'Unbounded', sans-serif;
            font-size: 20px;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            position: relative;
        }

        .pq-widget-title::after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: #204d76;
            /* Your brand blue */
        }

        /* Category List Interactivity */
        .pq-product-category-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pq-product-category-list li {
            margin-bottom: 10px;
        }

        .pq-product-category-list li a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: #f8f9fa;
            color: #15141c;
            font-weight: 500;
            border-radius: 5px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .pq-product-category-list li a i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        /* Active State & Hover */
        .pq-product-category-list li.active a,
        .pq-product-category-list li a:hover {
            background-color: #204d76;
            color: #ffffff;
        }

        .pq-product-category-list li a:hover i {
            transform: translateX(5px);
        }

        /* Responsive Fix for Mobile */
        @media (max-width: 991px) {
            .pq-sidebar-sticky {
                position: static;
                margin-top: 40px;
            }
        }