    .custom-color {
        background: linear-gradient(135deg, #0f1f7a 0%, #0f1f7a 100%) !important;
    }

    i.fas.fa-heart.display-1.text-white.opacity-75 {
        color: red !important;
        font-size: 120px;
    }

    .hero-image-container {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    }

    .hero-image-container img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .stats-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 10px 40px rgba(15, 31, 122, 0.1);
        transition: all 0.3s ease;
    }

    .stats-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(15, 31, 122, 0.15);
    }

    .pricing-price {
        font-size: 3rem;
        font-weight: 700;
        color: #0f1f7a;
    }

    .pricing-price span {
        font-size: 1rem;
        font-weight: 400;
        color: #6c757d;
    }

    .pet-image-circle {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid white;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }

    .testimonial-avatar {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #0f1f7a;
    }

    .guarantee-badge {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: 6px;
        display: inline-block;
        font-weight: 600;
    }

    .feature-icon-box {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-image-grid img {
        border-radius: 15px;
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .scrolling-banner {
        overflow: hidden;
        /* background: linear-gradient(135deg, #f8f9fa00 0%, #e9ecef 100%); */
        padding: 1.5rem 0;
        border-radius: 6px;
        margin-bottom: 2rem;
    }

    .scrolling-content {
        display: flex;
        animation: scroll 390s linear infinite;
        white-space: nowrap;
        width: max-content;
    }

    .scrolling-content:hover {
        animation-play-state: paused;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .scroll-item {
        display: inline-flex;
        align-items: center;
        padding: 0 2rem;
        color: #0f1f7a;
        font-weight: 500;
        flex-shrink: 0;
    }

    .scroll-item i {
            color: #1c8835;
        margin-right: 0.5rem;
    }

    .texas-law-card {
        background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
        border-radius: 20px;
        padding: 2rem;
        border-left: 4px solid #ffc107;
    }

    .landlord-guide-card {
        background: white;
        border-radius: 15px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: all 0.3s ease;
    }

    .landlord-guide-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .qualification-badge {
        display: inline-flex;
        align-items: center;
        background: white;
        padding: 0.75rem 1.25rem;
        border-radius: 50px;
        margin: 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        font-size: 0.9rem;
    }

    .qualification-badge i {
        margin-right: 0.5rem;
    }

    .esa-type-section {
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        border-radius: 20px;
        padding: 2.5rem;
    }

    .psd-type-section {
        background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
        border-radius: 20px;
        padding: 2.5rem;
    }

    .founder-section {
        background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
        border-radius: 25px;
        overflow: hidden;
    }

    @media (max-width: 768px) {
        /* Hero buttons - smaller font on mobile */
        .btn-lg {
            font-size: 0.85rem !important;
            padding: 0.5rem 1rem !important;
        }
    }
    /* ========================================
   TESTIMONIALS SECTION - Customer Reviews
   ======================================== */
            .testimonials-section {
                position: relative;
                width: 100%;
                padding: 0 40px 100px;
            }

            .process-preheader {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 16px;
            }

            .process-preheader-icon {
                width: 16px;
                height: 16px;
                background: var(--bg-gradient);
                border-radius: 4px;
            }

            .process-preheader-text {
                font-size: 14px;
                font-weight: 500;
                color: rgb(57, 107, 246);
                letter-spacing: -0.02em;
            }

            .process-title {
                font-size: 3rem;
                font-weight: 500;
                line-height: 1.15;
                letter-spacing: -0.03em;
                color: #000;
                margin: 0;
            }

            .process-boxes-wrapper {
                display: flex;
                align-items: stretch;
                gap: 0;
                width: 100%;
                position: relative;
            }

            .process-box {
                background-color: #ffffff;
                border: 1px solid #d0d2d6;
                border-radius: 24px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                padding: 24px;
                flex: 1 0 0;
                position: relative;
                min-height: 240px;
            }

            .process-box-header {
                display: flex;
                align-items: center;
                gap: 8px;
                margin-bottom: 16px;
            }

            .process-icon {
                width: 28px;
                height: 28px;
                background-size: 100% 100%;
                flex-shrink: 0;
            }

            .process-icon.scope {
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' x2='1' y1='0.129' y2='0.871'%3E%3Cstop offset='0' stop-color='rgb(188,230,242)'/%3E%3Cstop offset='0.5' stop-color='rgb(50, 103, 253)'/%3E%3Cstop offset='1' stop-color='rgb(188,230,242)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 21.968 1.469 C 22.586 1.123 22.989 0.899 23.31 0.771 C 23.612 0.651 23.744 0.657 23.834 0.68 C 23.923 0.703 24.039 0.761 24.236 1.009 C 24.447 1.274 24.681 1.663 25.038 2.263 L 26.509 4.736 C 26.866 5.337 27.097 5.727 27.228 6.036 C 27.351 6.327 27.342 6.447 27.32 6.524 C 27.299 6.602 27.243 6.713 26.985 6.907 C 26.71 7.112 26.309 7.338 25.691 7.685 L 20.448 10.621 C 19.863 10.949 19.485 11.159 19.185 11.278 C 18.904 11.39 18.79 11.381 18.717 11.362 C 18.645 11.342 18.541 11.294 18.354 11.059 C 18.155 10.808 17.934 10.439 17.593 9.867 L 16.021 7.225 C 15.672 6.637 15.447 6.256 15.319 5.954 C 15.198 5.67 15.208 5.555 15.227 5.483 C 15.247 5.41 15.297 5.306 15.545 5.119 C 15.809 4.921 16.197 4.702 16.798 4.365 Z' fill='url(%23g1)'/%3E%3Cpath d='M 9.517 9.268 L 14.116 6.692 C 14.285 7.042 14.521 7.439 14.788 7.887 L 16.407 10.607 C 16.651 11.018 16.869 11.384 17.079 11.684 L 15.016 12.839 L 20.584 25.891 C 20.81 26.42 20.558 27.029 20.023 27.252 C 19.487 27.474 18.87 27.226 18.644 26.697 L 14 15.811 L 9.356 26.697 C 9.131 27.226 8.514 27.474 7.978 27.252 C 7.442 27.029 7.19 26.42 7.416 25.891 L 12.346 14.335 C 11.809 14.635 11.453 14.831 11.169 14.944 C 10.888 15.056 10.773 15.047 10.701 15.027 C 10.628 15.008 10.524 14.96 10.338 14.724 C 10.139 14.473 9.917 14.105 9.577 13.532 L 8.741 12.127 C 8.391 11.54 8.166 11.158 8.038 10.856 C 7.917 10.573 7.927 10.457 7.947 10.385 C 7.966 10.312 8.016 10.208 8.264 10.022 C 8.528 9.823 8.916 9.604 9.517 9.268 Z' fill='url(%23g1)'/%3E%3Cpath d='M 6.836 11.595 L 2.309 14.13 C 1.691 14.477 1.289 14.703 1.015 14.909 C 0.757 15.102 0.701 15.213 0.679 15.291 C 0.658 15.368 0.649 15.488 0.772 15.779 C 0.903 16.088 1.133 16.478 1.49 17.078 C 1.847 17.678 2.081 18.067 2.292 18.332 C 2.489 18.581 2.605 18.638 2.694 18.662 C 2.784 18.685 2.916 18.691 3.218 18.571 C 3.539 18.443 3.942 18.218 4.56 17.872 L 9.063 15.35 C 8.852 15.05 8.634 14.684 8.39 14.273 L 7.507 12.789 C 7.24 12.341 7.005 11.945 6.836 11.595 Z' fill='url(%23g1)'/%3E%3C/svg%3E");
            }

            .process-icon.build {
                width: 31px;
                height: 30px;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 31 30'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' x2='1' y1='0.173' y2='0.827'%3E%3Cstop offset='0' stop-color='rgb(188, 230, 242)'/%3E%3Cstop offset='0.5' stop-color='rgb(50, 103, 253)'/%3E%3Cstop offset='1' stop-color='rgb(188,230,242)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 23.134 15.312 L 22.084 15.312 C 21.903 14.745 21.669 14.202 21.383 13.687 L 22.13 12.964 C 22.997 12.124 22.997 10.761 22.13 9.92 L 21.329 9.147 C 20.914 8.743 20.348 8.517 19.757 8.517 C 19.166 8.517 18.601 8.743 18.182 9.147 L 17.435 9.87 C 16.903 9.595 16.342 9.366 15.755 9.191 L 15.755 8.174 C 15.755 6.985 14.76 6.022 13.532 6.022 L 12.401 6.022 C 11.172 6.022 10.177 6.985 10.177 8.174 L 10.177 9.191 C 9.591 9.366 9.03 9.594 8.498 9.87 L 7.751 9.147 C 6.881 8.306 5.473 8.306 4.605 9.147 L 3.805 9.92 C 2.937 10.759 2.937 12.123 3.805 12.963 L 4.552 13.685 C 4.27 14.202 4.034 14.745 3.852 15.312 L 2.804 15.312 C 1.575 15.312 0.58 16.276 0.58 17.463 L 0.58 18.558 C 0.58 19.745 1.575 20.71 2.804 20.71 L 3.854 20.71 C 4.035 21.276 4.27 21.82 4.554 22.334 L 3.806 23.058 C 2.938 23.899 2.938 25.26 3.806 26.102 L 4.605 26.876 C 5.022 27.278 5.588 27.506 6.178 27.506 C 6.767 27.506 7.333 27.278 7.752 26.876 L 8.498 26.153 C 9.03 26.427 9.592 26.656 10.178 26.831 L 10.178 27.848 C 10.178 29.037 11.173 30 12.402 30 L 13.532 30 C 14.761 30 15.756 29.037 15.756 27.848 L 15.756 26.831 C 16.342 26.656 16.904 26.428 17.436 26.153 L 18.183 26.876 C 18.598 27.278 19.164 27.506 19.756 27.506 C 20.345 27.506 20.911 27.278 21.328 26.876 L 22.128 26.102 C 22.996 25.262 22.996 23.899 22.126 23.059 L 21.38 22.337 C 21.664 21.82 21.9 21.277 22.081 20.711 L 23.132 20.711 C 24.361 20.711 25.356 19.746 25.356 18.558 L 25.356 17.464 C 25.358 16.276 24.363 15.312 23.134 15.312 Z M 12.968 22.93 C 10.165 22.93 7.885 20.724 7.885 18.011 C 7.885 15.298 10.165 13.092 12.968 13.092 C 15.771 13.092 18.052 15.299 18.052 18.011 C 18.052 20.724 15.772 22.93 12.968 22.93 Z M 29.56 3.582 L 29.156 3.582 C 29.086 3.365 28.994 3.154 28.885 2.956 L 29.173 2.678 C 29.507 2.353 29.507 1.829 29.173 1.504 L 28.864 1.206 C 28.703 1.05 28.483 0.963 28.256 0.963 C 28.029 0.963 27.809 1.05 27.649 1.206 L 27.36 1.483 C 27.156 1.377 26.942 1.29 26.714 1.222 L 26.714 0.829 C 26.714 0.37 26.331 0 25.856 0 L 25.421 0 C 24.946 0 24.564 0.37 24.564 0.829 L 24.564 1.222 C 24.338 1.29 24.12 1.377 23.916 1.483 L 23.63 1.206 C 23.294 0.881 22.751 0.881 22.416 1.206 L 22.109 1.502 C 21.773 1.827 21.773 2.353 22.109 2.677 L 22.396 2.955 C 22.285 3.154 22.193 3.364 22.125 3.581 L 21.719 3.581 C 21.243 3.581 20.862 3.954 20.862 4.412 L 20.862 4.833 C 20.862 5.292 21.243 5.664 21.719 5.664 L 22.125 5.664 C 22.193 5.882 22.285 6.093 22.396 6.291 L 22.107 6.569 C 21.773 6.893 21.773 7.418 22.107 7.742 L 22.416 8.041 C 22.578 8.197 22.797 8.284 23.025 8.284 C 23.252 8.284 23.471 8.197 23.632 8.041 L 23.919 7.763 C 24.125 7.87 24.34 7.957 24.567 8.025 L 24.567 8.416 C 24.567 8.875 24.948 9.247 25.423 9.247 L 25.859 9.247 C 26.334 9.247 26.717 8.875 26.717 8.416 L 26.717 8.026 C 26.942 7.958 27.161 7.871 27.363 7.764 L 27.652 8.042 C 27.814 8.198 28.032 8.285 28.259 8.285 C 28.486 8.285 28.704 8.198 28.866 8.042 L 29.174 7.744 C 29.509 7.42 29.509 6.893 29.174 6.571 L 28.888 6.293 C 28.999 6.094 29.089 5.883 29.159 5.665 L 29.565 5.665 C 30.04 5.665 30.422 5.294 30.422 4.835 L 30.422 4.412 C 30.419 3.955 30.035 3.582 29.56 3.582 Z M 25.639 6.521 C 24.559 6.521 23.68 5.671 23.68 4.623 C 23.68 3.578 24.559 2.727 25.639 2.727 C 26.72 2.727 27.601 3.578 27.601 4.623 C 27.601 5.671 26.721 6.521 25.639 6.521 Z' fill='url(%23g1)'/%3E%3C/svg%3E");
            }

            .process-icon.deploy {
                width: 29px;
                height: 29px;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 29 29'%3E%3Cdefs%3E%3ClinearGradient id='g1' x1='0' x2='1' y1='0.172' y2='0.828'%3E%3Cstop offset='0' stop-color='rgb(188,230,242)'/%3E%3Cstop offset='0.5' stop-color='rgb(50, 103, 253)'/%3E%3Cstop offset='1' stop-color='rgb(188,230,242)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M 11.425 2.84 C 13.177 0.387 16.823 0.387 18.575 2.84 L 18.854 3.23 C 19.163 3.662 19.68 3.893 20.208 3.835 L 21.451 3.697 C 24.25 3.386 26.614 5.75 26.303 8.549 L 26.165 9.792 C 26.107 10.32 26.338 10.837 26.77 11.146 L 27.16 11.425 C 29.613 13.177 29.613 16.823 27.16 18.575 L 26.77 18.854 C 26.338 19.163 26.107 19.68 26.165 20.208 L 26.303 21.451 C 26.614 24.25 24.25 26.614 21.451 26.303 L 20.208 26.165 C 19.68 26.107 19.163 26.338 18.854 26.77 L 18.575 27.16 C 16.823 29.613 13.177 29.613 11.425 27.16 L 11.146 26.77 C 10.837 26.338 10.32 26.107 9.792 26.165 L 8.549 26.303 C 5.75 26.614 3.386 24.25 3.697 21.451 L 3.835 20.208 C 3.893 19.68 3.662 19.163 3.23 18.854 L 2.84 18.575 C 0.387 16.823 0.387 13.177 2.84 11.425 L 3.23 11.146 C 3.662 10.837 3.893 10.32 3.835 9.792 L 3.697 8.549 C 3.386 5.75 5.75 3.386 8.549 3.697 L 9.792 3.835 C 10.32 3.893 10.837 3.662 11.146 3.23 Z M 18.358 11.035 L 13.535 15.858 L 11.642 13.964 C 11.07 13.393 10.143 13.393 9.571 13.964 C 8.999 14.536 8.999 15.464 9.571 16.036 L 12.235 18.7 C 12.953 19.418 14.118 19.418 14.836 18.7 L 20.429 13.106 C 21.001 12.535 21.001 11.607 20.429 11.035 C 19.857 10.463 18.93 10.463 18.358 11.035 Z' fill='url(%23g1)'/%3E%3C/svg%3E");
            }

            .process-box-title {
                font-size: 20px;
                font-weight: 600;
                color: rgb(57, 107, 246);
                letter-spacing: -0.02em;
                line-height: 1.2;
                margin: 0;
            }

            .process-box-text {
                font-size: 20px;
                font-weight: 400;
                color: #5f6266;
                line-height: 1.4;
                margin-bottom: auto;
            }

            .process-box-footer {
                margin-top: 46px;
            }

            .process-box-note {
                font-size: 14px;
                color: #5f6266;
                margin-bottom: 4px;
            }

            .process-box-time {
                display: flex;
                align-items: center;
                gap: 6px;
                font-size: 14px;
                color: #5f6266;
            }

            .process-box-time svg {
                width: 16px;
                height: 16px;
            }

            .process-arrow {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0 8px;
                flex-shrink: 0;
                align-self: center;
            }

            .process-arrow svg {
                width: 25px;
                height: 17px;
            }

            .process-cta {
                margin-top: 60px;
            }

            .process-cta .btn-demo {
                background-color: #396bf6;
                border-radius: 112px;
                border: none;
                color: #ffffff;
            }

            @media (max-width: 1200px) {
                .process-section {
                    padding: 0 60px 100px;
                }
            }

            @media (max-width: 991px) {
                .process-section {
                    padding: 0 30px 80px;
                }

                .process-title {
                    font-size: 2.2rem;
                }

                .process-boxes-wrapper {
                    flex-direction: column;
                    gap: 24px;
                }

                .process-arrow {
                    transform: rotate(90deg);
                    margin-top: 0;
                    padding: 8px 0;
                }

                .process-box {
                    width: 100%;
                }
            }

            @media (max-width: 576px) {
                .process-section {
                    padding: 0 20px 60px;
                }
            }

            /* Testimonials Section */
            .testimonials-section {
                position: relative;
                width: 100%;
                padding: 0 40px 100px;
                overflow: visible;
            }

            .testimonials-section::before {
                content: '';
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100vw;
                height: 100%;
                z-index: 0;
                pointer-events: none;
            }

            .testimonials-bg {
                position: absolute;
                top: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100vw;
                height: 100%;
                z-index: 0;
                overflow: hidden;
            }

            .testimonials-bg img {
                width: 100%;
                height: 107%;
                object-fit: fill;
                object-position: center bottom;
            }

            .testimonials-content {
                position: relative;
                z-index: 1;
                max-width: 1400px;
                margin: 0 auto;
            }

            .testimonials-title {
                font-size: 3rem;
                font-weight: 500;
                line-height: 1.2;
                letter-spacing: -0.03em;
                text-align: center;
                color: rgb(11, 18, 32);
                margin-bottom: 48px;
            }

            .testimonials-carousel-wrapper {
                position: relative;
                width: 100%;
            }

            .testimonials-carousel {
                padding: 0;
                margin: 0;
                list-style: none;
                position: relative;
                display: flex;
                flex: 1 1 100%;
                width: 100%;
                gap: 24px;
                align-items: center;
                flex-direction: row;
                overflow-x: auto;
                overflow-y: hidden;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }

            .testimonials-carousel::-webkit-scrollbar {
                display: none;
                -webkit-appearance: none;
                width: 0;
                height: 0;
            }


            .testimonial-card-1 {
                flex: none;
                scroll-snap-align: start;
                width: 1200px;
                max-width: calc(100vw - 160px);
                height: 400px;
                    background: linear-gradient(135deg, #0f1f7a 0%, #0f1f7a 100%) !important;
                border-radius: 38px;
                display: flex;
                flex-direction: row;
                align-items: center;
                padding: 24px;
                gap: 32px;
                overflow: hidden;
            }

            .testimonial-image {
                flex: none;
                width: 35%;
                height: 100%;
                    border: 7px solid white;
                     border-radius: 24px;
                overflow: hidden;
            }

            .testimonial-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .testimonial-content {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
                padding: 0;
            }

            .testimonial-text-content {
                display: flex;
                flex-direction: column;
                gap: 32px;
            }

            .testimonial-logo {
                height: 48px;
                width: auto;
                max-width: 145px;
            }

            .testimonial-logo img {
                height: 50px;
                width: auto;
                object-fit: contain;
            }

            .testimonial-quote {
                font-family: var(--framer-font-family);
                font-size: 1.6rem;
                font-weight: 500;
                line-height: 1.25;
                letter-spacing: -0.02em;
                color: rgb(255, 255, 255);
                margin: 0;
            }

            .testimonial-author {
                display: flex;
                flex-direction: column;
                gap: 4px;
            }

            .testimonial-author-name {
                font-family: var(--framer-font-family);
                font-size: 1.25rem;
                font-weight: 600;
                line-height: 1.2;
                letter-spacing: -0.02em;
                color: rgb(255, 255, 255);
                margin: 0;
            }

            .testimonial-author-title {
                font-family: var(--framer-font-family);
                font-size: 1rem;
                font-weight: 400;
                line-height: 1.2;
                letter-spacing: -0.02em;
                color: rgb(255, 255, 255);
                margin: 0;
            }

            .carousel-nav-btn {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
                width: 48px;
                height: 48px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.9);
                border: none;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
                transition: all 0.2s ease;
                opacity: 1;
                visibility: visible;
            }

            .carousel-nav-btn.hidden {
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
            }

            .carousel-nav-btn:hover {
                background: #ffffff;
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            }

            .carousel-nav-btn.prev {
                left: 0;
            }

            .carousel-nav-btn.next {
                right: 0;
            }

            .carousel-nav-btn svg {
                width: 20px;
                height: 20px;
                stroke: rgb(0, 0, 0);
            }

            @media (max-width: 1200px) {
                .testimonials-content {
                    padding: 0 60px;
                }

                .testimonial-card-1 {
                    max-width: calc(100vw - 120px);
                    width: 800px;
                    height: 372px;
                }

                .testimonial-quote {
                    font-size: 18px;
                }
            }

            @media (max-width: 991px) {
                .testimonials-content {
                    padding: 0 30px;
                }

                .testimonials-title {
                    font-size: 2.2rem;
                }

                .testimonial-card-1 {
                    max-width: calc(100vw - 60px);
                    width: 680px;
                    height: 372px;
                }

                .testimonial-quote {
                    font-size: 16px;
                }
            }

            @media (max-width: 768px) {
                .testimonials-content {
                    padding: 0 8px;
                }

                .testimonial-card-1 {
                    flex-direction: column;
                    justify-content: flex-start;
                    gap: 24px;
                    width: 372px;
                    max-width: calc(100vw - 40px);
                    height: auto;
                    min-height: 581px;
                }

                .testimonial-image {
                    width: 100%;
                    height: 249px;
                    flex: none;
                }

                .testimonial-content {
                    width: 100%;
                    height: auto;
                }

                .testimonial-text-content {
                    gap: 24px;
                }

                .testimonial-quote {
                    font-size: 16px;
                }

                .carousel-nav-btn {
                    width: 40px;
                    height: 40px;
                }

                .carousel-nav-btn svg {
                    width: 16px;
                    height: 16px;
                }
            }










    .credentials-badge {
        display: inline-flex;
        align-items: center;
        background: white;
        padding: 0.75rem 1.25rem;
        border-radius: 6px;
        margin: 0.5rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid #2c3a8a;
    }
    .law-snapshot {
        background: linear-gradient(135deg, #0f1f7a0d 0%, #ffffff 100%);
        border-radius: 7px;
        padding: 2rem;
        border-left: 4px solid #c10828;
    }
    .promise-card {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        border-radius: 20px;
        padding: 2.5rem;
    }

    .tsa-class-1{
            height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 4px solid #0f1f7a;
    }

    /* ===== ASA Utility Classes (extracted from inline styles) ===== */

    /* Hero Section */
    .asa-retake-banner {
        background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    }
    .asa-hero-logo {
        max-height: 170px;
        filter: brightness(0) invert(1);
    }
    .asa-img-cover-full {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    /* Card / Cert Section */
    .asa-badge-sm {
        font-size: 0.9rem;
    }
    .asa-max-w-800 {
        max-width: 800px;
    }
    .asa-card-white-blue {
        background: white;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(15, 31, 122, 0.1);
    }
    .asa-card-white-green {
        background: white;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(40, 167, 69, 0.1);
    }
    .asa-icon-box-70-blue {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #0f1f7a 0%, #3b5bdb 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
    }
    .asa-icon-box-70-green {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
    }
    .asa-icon-2rem {
        font-size: 2rem;
    }

    /* Documentation Advisory */
    .asa-doc-advisory {
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 40px rgba(15, 31, 122, 0.08);
        border: 1px solid rgba(15, 31, 122, 0.06);
        overflow: hidden;
    }
    .asa-doc-advisory-header {
        background: linear-gradient(135deg, #0f1f7a 0%, #3b5bdb 100%);
        padding: 14px 24px;
    }
    .asa-doc-advisory-icon-sm {
        font-size: 1.1rem;
    }
    .asa-doc-advisory-title-sm {
        font-size: 0.95rem;
        letter-spacing: 0.3px;
    }
    .asa-doc-advisory-icon-box {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, #e8f0fe 0%, #d4e3fc 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .asa-doc-advisory-file-icon {
        font-size: 1.3rem;
        color: #0f1f7a;
    }
    .asa-doc-advisory-title {
        color: #0f1f7a;
        font-size: 1.05rem;
    }
    .asa-doc-advisory-desc {
        font-size: 0.9rem;
        line-height: 1.65;
    }
    .asa-doc-check-item {
        font-size: 0.82rem;
        color: #555;
    }
    .asa-check-green {
        color: #28a745;
    }
    .asa-flex-shrink-0 {
        flex-shrink: 0;
    }

    /* Eval Banner */
    .asa-eval-banner {
        border-radius: 12px;
        background: linear-gradient(135deg, #0b3995 0%, #0f1f79 100%);
        padding: 1.25rem;
    }

    /* Pricing (old section) */
    .asa-pos-relative {
        position: relative;
    }
    .asa-border-left-blue {
        border-left: 4px solid #0f1f7a !important;
    }

    /* Pricing (new section) */
    .asa-pricing-badge {
        background: rgba(15, 31, 122, 0.08);
        color: #0f1f7a;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }
    .asa-max-w-640 {
        max-width: 640px;
    }
    .asa-toggle-bg {
        background: #f0f2f5;
    }
    .asa-toggle-btn {
        transition: all 0.3s ease;
    }

    /* Pricing Cards */
    .asa-pricing-card-esa {
        background: #fff;
        border-radius: 20px;
        border-top-right-radius: 4px;
        box-shadow: 0 2px 16px rgba(15, 31, 122, 0.06);
        transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
        overflow: hidden;
        position: relative;
    }
    .asa-pricing-card-bundle {
        background: #fff;
        border-radius: 20px;
        border-top-right-radius: 4px;
        box-shadow: 0 8px 40px rgba(15, 31, 122, 0.13);
        transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
        overflow: hidden;
        position: relative;
        transform: scale(1.03);
    }
    .asa-pricing-card-psd {
        background: #fff;
        border-radius: 20px;
        border-top-right-radius: 4px;
        box-shadow: 0 2px 16px rgba(15, 31, 122, 0.06);
        transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
        overflow: hidden;
        position: relative;
    }
    .asa-accent-gray {
        height: 5px;
        background: linear-gradient(90deg, #6c757d 0%, #adb5bd 100%);
    }
    .asa-accent-blue {
        height: 5px;
        background: linear-gradient(90deg, #0f1f7a 0%, #1a3cb8 50%, #4a6cf7 100%);
    }
    .asa-accent-purple {
        height: 5px;
        background: linear-gradient(90deg, #5c6bc0 0%, #7986cb 100%);
    }

    /* Icon Boxes (64px) */
    .asa-icon-box-64-light {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: linear-gradient(135deg, #f0f2ff 0%, #e8ebff 100%);
    }
    .asa-icon-box-64-blue {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: linear-gradient(135deg, #0f1f7a 0%, #1a3cb8 100%);
    }
    .asa-icon-box-64-purple {
        width: 64px;
        height: 64px;
        border-radius: 16px;
        background: linear-gradient(135deg, #ede7f6 0%, #d1c4e9 100%);
    }

    /* Icon Font Sizes */
    .asa-icon-1-6rem-blue {
        font-size: 1.6rem;
        color: #0f1f7a;
    }
    .asa-icon-1-6rem-white {
        font-size: 1.6rem;
        color: #fff;
    }
    .asa-icon-1-6rem-purple {
        font-size: 1.6rem;
        color: #5c6bc0;
    }

    /* Headings */
    .asa-heading-dark {
        color: #333;
    }
    .asa-heading-blue {
        color: #0f1f7a;
    }

    /* List & HR */
    .asa-hr-light {
        border-color: #eee;
    }
    .asa-list-sm {
        font-size: 0.92rem;
    }

    /* Check Dots (22px circles) */
    .asa-check-dot-green {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #e8f5e9;
        margin-top: 2px;
    }
    .asa-check-dot-blue {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #e3f2fd;
        margin-top: 2px;
    }
    .asa-check-dot-purple {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #ede7f6;
        margin-top: 2px;
    }
    .asa-check-xs-green {
        font-size: 0.65rem;
        color: #2e7d32;
    }
    .asa-check-xs-blue {
        font-size: 0.65rem;
        color: #0f1f7a;
    }
    .asa-check-xs-purple {
        font-size: 0.65rem;
        color: #5c6bc0;
    }

    /* CTA Buttons */
    .asa-btn-esa {
        background: #f0f2f5;
        color: #0f1f7a;
        border: none;
        border-radius: 12px;
        padding: 14px;
        transition: all 0.3s ease;
    }
    .asa-btn-esa:hover {
        background: #e2e6ea;
        color: #0f1f7a;
    }
    .asa-btn-primary-gradient {
        background: linear-gradient(135deg, #0f1f7a 0%, #1a3cb8 100%);
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 14px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 14px rgba(15, 31, 122, 0.25);
    }
    .asa-btn-primary-gradient:hover {
        color: #fff;
        box-shadow: 0 6px 20px rgba(15, 31, 122, 0.35);
    }
    .asa-btn-psd {
        background: #f0f2f5;
        color: #5c6bc0;
        border: none;
        border-radius: 12px;
        padding: 14px;
        transition: all 0.3s ease;
    }
    .asa-btn-psd:hover {
        background: #e2e6ea;
        color: #5c6bc0;
    }

    /* Popular/Best Value Ribbons */
    .asa-popular-ribbon {
        position: absolute;
        top: 39px;
        right: -39px;
        background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
        color: #fff;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 6px 40px;
        transform: rotate(45deg);
        z-index: 2;
        text-transform: uppercase;
    }

    /* Bundle Plans */
    .asa-bundle-card-lc {
        background: linear-gradient(160deg, #ffffff 0%, #f8f9ff 100%);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(15, 31, 122, 0.07);
        transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
        position: relative;
        border: 2px solid #e8ebff;
    }
    .asa-bundle-card-psd {
        background: linear-gradient(160deg, #ffffff 0%, #fffdf5 100%);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 40px rgba(15, 31, 122, 0.12);
        transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
        position: relative;
        border: 2px solid #fff3cd;
    }
    .asa-accent-lc {
        height: 5px;
        background: linear-gradient(90deg, #0f1f7a 0%, #4a6cf7 100%);
    }
    .asa-accent-psd-b {
        height: 5px;
        background: linear-gradient(90deg, #f7931e 0%, #ff6b35 100%);
    }
    .asa-icon-box-56-blue {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: linear-gradient(135deg, #0f1f7a 0%, #1a3cb8 100%);
    }
    .asa-icon-box-56-orange {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    }
    .asa-icon-1-4rem-white {
        font-size: 1.4rem;
        color: #fff;
    }
    .asa-badge-lc {
        background: #e8ebff;
        color: #0f1f7a;
        font-size: 0.7rem;
        font-weight: 700;
    }
    .asa-badge-psd-b {
        background: #fff3cd;
        color: #856404;
        font-size: 0.7rem;
        font-weight: 700;
    }
    .asa-price-lg {
        font-size: 2.8rem;
    }
    .asa-text-onetime {
        font-size: 0.9rem;
    }
    .asa-feat-box-blue {
        background: #f0f2ff;
    }
    .asa-feat-box-orange {
        background: #fff8e1;
    }
    .asa-feat-icon-blue {
        color: #0f1f7a;
        font-size: 1.2rem;
    }
    .asa-feat-icon-orange {
        color: #f7931e;
        font-size: 1.2rem;
    }
    .asa-feat-label-blue {
        color: #0f1f7a;
    }
    .asa-feat-label-brown {
        color: #856404;
    }
    .asa-list-sm-2 {
        font-size: 0.9rem;
    }
    .asa-check-sm {
        font-size: 0.8rem;
    }
    .asa-btn-lc {
        background: linear-gradient(135deg, #0f1f7a 0%, #1a3cb8 100%);
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 14px;
        box-shadow: 0 4px 14px rgba(15, 31, 122, 0.2);
    }
    .asa-btn-lc:hover {
        color: #fff;
    }
    .asa-btn-psd-b {
        background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
        color: #fff;
        border: none;
        border-radius: 12px;
        padding: 14px;
        box-shadow: 0 4px 14px rgba(247, 147, 30, 0.3);
    }
    .asa-btn-psd-b:hover {
        color: #fff;
    }
    .asa-best-value-ribbon {
        position: absolute;
        top: 16px;
        right: -30px;
        background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
        color: #fff;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 5px 36px;
        transform: rotate(45deg);
        z-index: 2;
        text-transform: uppercase;
    }

    /* Misc */
    .asa-guarantee-info {
        font-size: 0.88rem;
        color: #6c757d;
    }
    .asa-pet-avatar-sm {
        width: 60px;
        height: 60px;
    }
    .asa-carousel-logo-inverted {
        
    }
    .asa-cta-card {
        border-radius: 10px;
        overflow: hidden;
    }
    .asa-modal-rounded {
        border-radius: 20px;
        overflow: hidden;
    }
    .asa-hidden {
        display: none;
    }






    /* ===================================================
    ================CSS Part 2 (new styles)================
    =================================================== */ 

    .tsa-free-eval-section {
        border-radius: 28px;
        padding: 4rem 2.5rem;
        position: relative;
        overflow: hidden;
        margin-bottom: 3rem;
    }

    .tsa-free-eval-section::before {
        content: '';
        position: absolute;
        top: -80px;
        right: -80px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(15, 31, 122, 0.06) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .tsa-free-eval-section::after {
        content: '';
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 250px;
        height: 250px;
        background: radial-gradient(circle, rgba(40, 167, 69, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .tsa-eval-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        color: #fff;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.5rem 1.25rem;
        border-radius: 6px;
        margin-bottom: 1.25rem;
        letter-spacing: 0.3px;
    }

    .tsa-eval-heading {
    font-size: 2rem;
    font-weight: 700;
    font-family: arial;
    color: #0f1f7a;
    line-height: 1.2;
    margin-bottom: 1rem;
    }

    .tsa-eval-subtext {
        color: #5a6270;
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
        max-width: 540px;
    }

    .tsa-eval-steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .tsa-eval-step-card {
        background: #ffffff;
        border-radius: 6px;
        padding: 2rem 1.5rem;
        text-align: center;
            box-shadow: 0 8px 30px rgb(15 31 122 / 4%);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }


    .tsa-eval-step-number {
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, #0f1f7a 0%, #3b5bdb 100%);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
        font-weight: 700;
        box-shadow: 0 4px 12px rgba(15, 31, 122, 0.25);
    }

    .tsa-eval-step-icon {
        width: 64px;
        height: 64px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin: 0 auto 1rem;
    }

    .tsa-eval-step-icon--screen {
        background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        color: #2e7d32;
    }

    .tsa-eval-step-icon--review {
        background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        color: #1565c0;
    }

    .tsa-eval-step-icon--result {
        background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
        color: #e65100;
    }

    .tsa-eval-step-title {
        font-weight: 700;
        color: #0f1f7a;
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .tsa-eval-step-desc {
        color: #6c757d;
        font-size: 0.88rem;
        line-height: 1.55;
        margin-bottom: 0;
    }

    .tsa-eval-cta-row {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .tsa-eval-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        background: linear-gradient(135deg, #0f1f7a 0%, #3b5bdb 100%);
        color: #fff;
        font-size: 1.05rem;
        font-weight: 700;
        padding: 0.9rem 2.25rem;
        border-radius: 6px;
        border: none;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(15, 31, 122, 0.3);
    }

    .tsa-eval-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(15, 31, 122, 0.4);
        color: #fff;
        text-decoration: none;
    }

    .tsa-eval-trust-notes {
        display: flex;
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .tsa-eval-trust-item {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        color: #5a6270;
        font-size: 0.88rem;
        font-weight: 500;
    }

    .tsa-eval-trust-item i {
        color: #28a745;
        font-size: 0.8rem;
    }

    .tsa-eval-visual {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .tsa-eval-visual-ring {
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: linear-gradient(135deg, #0f1f7a 0%, #3b5bdb 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-shadow: 0 20px 60px rgba(15, 31, 122, 0.2);
    }

    .tsa-eval-visual-ring::before {
        content: '';
        position: absolute;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        border: 2px dashed rgba(15, 31, 122, 0.15);
        animation: tsa-spin 20s linear infinite;
    }

    @keyframes tsa-spin {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    .tsa-eval-visual-inner {
        text-align: center;
        color: #fff;
    }

    .tsa-eval-visual-inner i {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        display: block;
        filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
    }

    .tsa-eval-visual-inner span {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .tsa-eval-float-badge {
        position: absolute;
        background: #fff;
        border-radius: 6px;
        padding: 0.6rem 1rem;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.82rem;
        font-weight: 600;
        color: #0f1f7a;
        white-space: nowrap;
    }

    .tsa-eval-float-badge--top {
        top: 5px;
        right: -10px;
        animation: tsa-float 3s ease-in-out infinite;
    }

    .tsa-eval-float-badge--bottom {
        bottom: 10px;
        left: -15px;
        animation: tsa-float 3s ease-in-out infinite 1.5s;
    }

    @keyframes tsa-float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }

    @media (max-width: 991.98px) {
        .tsa-eval-steps-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .tsa-eval-heading {
            font-size: 2rem;
        }
        .tsa-free-eval-section {
            padding: 2.5rem 1.5rem;
        }
        .tsa-eval-visual {
            margin-top: 2rem;
        }
    }

    @media (max-width: 575.98px) {
        .tsa-eval-heading {
            font-size: 1.6rem;
        }
        .tsa-eval-visual-ring {
            width: 170px;
            height: 170px;
        }
        .tsa-eval-visual-ring::before {
            width: 190px;
            height: 190px;
        }
        .tsa-eval-float-badge {
            display: none;
        }
        .testimonials-section {
                padding: 0 0px 80px;

        }
        
    }

