
        /* ===========================
           CSS VARIABLES / COLOR SYSTEM
           =========================== */
        :root {
            --deep-navy: #0D1B3E;
            --dark-teal: #0B7A75;
            --vivid-teal: #1AC8C0;
            --orange: #FF6B35;
            --orange-hover: #e85a25;
            --warm-white: #F7F5F0;
            --pure-white: #FFFFFF;
            --charcoal: #333333;
            --muted-gray: #888780;
            --muted: #5A6478;
            --light: #9CA3B0;
            --black: #000;
            --text: #1A1A2E;
            --light-blue: #B5D4F4;
            --light-blue-hover: #d0e4f8;
            --dark-charcoal: #444441;
            --light-gray-border: #E8E6E1;
            --light-teal: #E6F7F6;
        }

        /* ===========================
           BASE / TYPOGRAPHY
           =========================== */
        body {
            font-family: 'Inter', sans-serif;
            color: var(--charcoal);
            /* background-color: var(--warm-white); */
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }
        #query::placeholder {
            font-size: 13px;
            font-weight: 500;
        }
        #query{
            outline:none;border-top-left-radius:7px;border-bottom-left-radius:7px;
        }
        .search-submit{
            border-top-right-radius: 7px; border-bottom-right-radius: 7px;
        }


        a {
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .section-tag {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--dark-teal);
            margin-bottom: 10px;
        }
        .set_one-eight {color: #85B7EB !important;}
        .set_one-eight .social{color: #85B7EB !important;}
        .set_one-eight span{font-weight: 500;}

        .section-heading {
            font-size: 30px;
            font-weight: 800;
            color: var(--deep-navy);
            line-height: 1.25;
        }
        .section-heading-product {
            font-size: 35px;
            font-weight: 800;
            color: var(--deep-navy);
            line-height: 1.25;
        }
        .industry-content-section .content-text h2 {
            font-size: 35px;
            font-weight: 800;
            color: var(--deep-navy);
            margin-bottom: 8px;
            line-height: 1.25;
        }

        .section-subtext {
            font-size: 16px;
            color: var(--black);
            line-height: 1.6;
        }

        .view-all-link {
            font-size: 15px;
            font-weight: 600;
            color: var(--dark-teal);
        }
        .view-all-link:hover {
            color: var(--vivid-teal);
        }
        #bussiness::placeholder {
            color: #000;
            font-weight: 700;
            font-size: 17px;
        }

        /* ===========================
           BUTTONS
           =========================== */
        .btn-orange {
            background-color: var(--orange);
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            border: none;
            border-radius: 8px;
            padding: 15px 40px;
            transition: background-color 0.25s ease, transform 0.15s ease;
        }
        .btn-orange:hover {
            background-color: var(--orange-hover);
            color: #fff;
            transform: translateY(-1px);
        }

        .btn-ghost-teal {
            background: transparent;
            color: var(--vivid-teal);
            font-weight: 600;
            font-size: 15px;
            border: 2px solid var(--vivid-teal);
            border-radius: 8px;
            padding: 15px 40px;
            transition: all 0.25s ease;
        }
        .btn-ghost-teal:hover {
            background-color: var(--vivid-teal);
            color: #fff;
            border: 1px solid var(--dark-teal);
        }


        /* =====================================================
           SECTION 1: HERO
           ===================================================== */
            .hero-section-home {
            background-color: var(--deep-navy);
            padding: 100px 0 100px;
            overflow: hidden;
        }
        .hero-section {
            background-color: var(--deep-navy);
            padding: 60px 0 50px;
            overflow: hidden;
        }

        .hero-eyebrow {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--vivid-teal);
            margin-bottom: 18px;
        }

        .hero-heading {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 55px;
            font-weight: 600;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 20px;
        }
        .hero-heading .teal-accent {
            color: var(--vivid-teal);
        }

        .hero-subheadline {
            font-size: 18px;
            color: var(--light-blue);
            line-height: 1.7;
            margin-bottom: 32px;
            max-width: 480px;
        }


        /* Hero product card (right side) */
        .hero-product-card {
            /*background: linear-gradient(145deg, #0f3d3b 0%, #0B7A75 100%);*/
            border-radius: 16px;
            /*padding: 32px 28px;*/
            position: relative;
            height: 100%;
            min-height: 360px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-image-slider img{
            width:100%;
            height:auto;
            object-fit:cover;
            border-radius:15px;
        }

        .carousel-control-prev,
        .carousel-control-next{
            width:40px;
        }

        .hero-card-box {
            width: 200px;
            height: 180px;
            background: linear-gradient(135deg, var(--orange) 0%, #e85a25 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
            position: relative;
        }
        .hero-card-box i {
            font-size: 64px;
            color: rgba(255,255,255,0.9);
        }

        .hero-card-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-card-tag {
            background: rgba(255,255,255,0.12);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 20px;
            backdrop-filter: blur(4px);
        }


        /* =====================================================
           SECTION 2: STATS BAR
           ===================================================== */
        .stats-bar {
            background-color: var(--deep-navy);
            border-top: 1px solid rgba(181, 212, 244, 0.12);
        }

        .stat-item {
            text-align: center;
            border-right: 2px solid rgba(181, 212, 244, 0.12);;
            padding: 28px 0px
        }
        .stat-item.no-border{
            border-right: none
        }

        .stat-number {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--vivid-teal);
            display: block;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 14px;
            font-weight: 500;
            color: var(--light-blue);
            margin-top: 4px;
        }


        /* =====================================================
           SECTION 3: OUR CATEGORIES
           ===================================================== */
        .categories-section {
            background-color: var(--warm-white);
            padding: 72px 0;
        }

        .category-card {
            background: var(--pure-white);
            border: 1px solid var(--light-gray-border);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(13, 27, 62, 0.08);
        }

        .category-card:hover .category-card-img img {
            transform: scale(1.05);
        }


        .category-card-img {
            /* height: 180px; */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #E8E6E1;
            padding: 10px;
        }
        .category-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .category-card-img i {
            font-size: 48px;
            opacity: 0.85;
        }
        .category-card-img.bg-teal { background-color: #E0F5F4; color: var(--dark-teal); }
        .category-card-img.bg-blue { background-color: #E0EAF5; color: #2D5B9E; }
        .category-card-img.bg-green { background-color: #E4F0E0; color: #4A7C3F; }
        .category-card-img.bg-pink { background-color: #F5E0EB; color: #A84D73; }
        .category-card-img.bg-amber { background-color: #F5EDE0; color: #B07D36; }
        .category-card-img.bg-gray { background-color: #ECEBE8; color: #6B6A65; }

        .category-card-body {
            padding: 20px;
        }

        .category-card-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--deep-navy);
        }

        .category-card-desc {
            font-size: 14px;
            color: var(--deep-navy);
            line-height: 1.55;
            margin: 14px 0px;
        }

        .category-card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-teal);
        }
        .category-card-link:hover {
            color: var(--vivid-teal);
        }


        /* =====================================================
           SECTION 4: TRUST BAR
           ===================================================== */
        .trust-bar {
            background-color: var(--deep-navy);
            padding: 35px 0;
        }

        .trust-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .trust-icon {
            width: 28px;
            height: 28px;
            background-color: var(--dark-teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .trust-icon i {
            color: #fff;
            font-size: 14px;
        }

        .trust-text {
            font-size: 16px;
            font-weight: 700;
            color: var(--light-blue);
            white-space: nowrap;
        }


        /* =====================================================
           SECTION 5: OUR PRODUCTS
           ===================================================== */
        .products-section {
            background-color: var(--warm-white);
            padding: 72px 0;
        }

        .product-card {
            /*border-radius: 15px;*/
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            /*border:1px solid var(--light-gray-border);*/
            
        }
        .related-categoriess {
            border-top-left-radius:12px;
            border-top-right-radius:12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            border:1px solid var(--light-gray-border);
            
        }
        .product-card:hover {
            /*transform: translateY(-4px);*/
            /*box-shadow: 0 12px 32px rgba(13, 27, 62, 0.08);*/
            /*box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;*/
        }

        .product-card:hover .product-card-img img {
            transform: scale(1.05);
        }

        .product-card-img {
            /* height: 200px; */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            
        }
        .related-categories{padding:0px 10px;border-radius: 15px;}
        .product-card-img i {
            font-size: 56px;
            color: var(--muted-gray);
        }
        .product-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
            border-radius: 15px;
        }

        .product-card-body {
            padding: 18px 20px;
            text-align: center;
            /*background:#fff;*/
        }

        .product-card-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px;
            font-weight: 800;
            color: var(--deep-navy);
        }


        /* =====================================================
           SECTION 6: HOW IT WORKS
           ===================================================== */
        .how-it-works-section {
            background-color: var(--pure-white);
            padding: 72px 0;
        }

        .step-card {
            padding: 20px;
            border: 1px solid var(--light-gray-border);
            border-radius: 12px;
        }

        .step-number {
            width:45px;
            height: 45px;
            background-color: var(--deep-navy);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .step-number span {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--vivid-teal);
        }

        .step-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 19px;
            font-weight: 700;
            color: var(--deep-navy);
            margin: 15px 0px;
        }

        .step-desc {
            font-size: 17px;
            color: var(--deep-navy);
            line-height: 1.6;
        }


        /* =====================================================
           SECTION 7: CTA BAND
           ===================================================== */
        .cta-band {
            background-color: var(--dark-teal);
            padding: 56px 0;
            text-align: center;
        }

        .cta-band-heading {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 35px;
            font-weight: 800;
            color: var(--warm-white);
            margin-bottom: 10px;
        }

        .cta-band-sub {
            font-size: 18px;
            color: var(--warm-white);
            margin-bottom: 28px;
        }
        .subscribe-us{
            width: 800px;
            margin: 0 auto;
        }

        .cta-form-inline {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin: 0 auto;
        }

        .cta-form-inline input {
            flex: 1;
            padding:20px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            outline: none;
            background: #fff;
        }
        .cta-form-inline input::placeholder {
            color: var(--muted-gray);
        }


        /* =====================================================
           SECTION 8: BY INDUSTRY CONTENT
           ===================================================== */
        .industry-content-section {
            background-color: #fff;
            padding: 72px 0;
        }

        .industry-content-section .content-text p {
            font-size: 16px;
            color: #000;
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .industry-content-section .content-text h3 {
            font-size: 30px;
            font-weight: 700;
            color: var(--deep-navy);
            margin-bottom: 12px;
            margin-top: 28px;
        }
        .industry-content-section .content-text h4 {
            font-size: 25px;
            font-weight: 700;
            color: var(--deep-navy);
            margin-bottom: 12px;
            margin-top: 28px;
        }
        .industry-content-section .content-text a {

            color: #000;
            text-decoration: underline;
        }

        .read-more-link {
            color: var(--dark-teal);
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
        }
        .read-more-link:hover {
            color: var(--vivid-teal);
        }


        /* =====================================================
           SECTION 9: REQUEST A SAMPLE KIT
           ===================================================== */
        .sample-kit-section {
            background-color: var(--pure-white);
            padding: 72px 0;
            border-top: 1px solid var(--light-gray-border);
            /* border-bottom: 1px solid var(--light-gray-border); */
        }

        .form-wrapper {
            background: var(--warm-white);
            border: 1px solid var(--light-gray-border);
            border-radius: 16px;
            padding: 30px 40px;
        }

        .form-wrapper .form-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--deep-navy);
            margin-bottom: 6px;
        }


        #form-input::placeholder{color: #000;}

        .form-wrapper .form-control,
        .form-wrapper .form-select {
            border: 1px solid var(--light-gray-border);
            border-radius: 8px;
            padding: 10px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            color: var(--charcoal);
            transition: border-color 0.2s ease;
            margin: 10px 0px 0px;
        }
        .form-wrapper .form-control:focus,
        .form-wrapper .form-select:focus {
            border-color: var(--dark-teal);
            box-shadow: 0 0 0 3px rgba(11, 122, 117, 0.1);
        }
        .form-wrapper .form-control::placeholder {
            color: #bbb8b0;
        }

        .form-section-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 10px;
            font-weight: 700;
            color: var(--dark-teal);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--light-gray-border);
        }

        /*.sample-image-placeholder {*/
        /*    background: var(--light-gray-border);*/
        /*    border-radius: 12px;*/
        /*    height: 100%;*/
        /*    min-height: 260px;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*}*/
        .sample-image-placeholder i {
            font-size: 56px;
            color: var(--muted-gray);
        }


        /* =====================================================
           SECTION 10: BLOG
           ===================================================== */
        .blog-section {
            background-color: var(--warm-white);
            padding: 72px 0;
        }

        .blog-card {
            background: var(--warm-white);
            border: 1px solid var(--light-gray-border);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .blog-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(13, 27, 62, 0.08);
        }

        .blog-card:hover .blog-card-img img {
            transform: scale(1.05);
        }

        .blog-card-img {
            height: 180px;
            overflow: hidden;
            background: linear-gradient(135deg, #e8e4dc 0%, #d6d2ca 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .blog-card-img i {
            font-size: 40px;
            color: var(--muted-gray);
        }

        .blog-card-body {
            padding: 22px;
        }

        .blog-card-tag {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--dark-teal);
            display: inline-block;
        }

        .blog-card-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--deep-navy);
            line-height: 1.4;
            margin: 10px 0px;
        }

        .blog-card-meta {
            font-size: 13px;
            color: var(--muted-gray);
        }


        /* =====================================================
           SECTION 11: CUSTOMER REVIEWS (CAROUSEL)
           ===================================================== */
        .reviews-section {
            background-color: var(--pure-white);
            padding: 10px 0px 0px 0px;
        }
        .reviews-section-category {
            background-color: var(--warm-white);
            padding: 72px 0;
        }

        /* Aggregate rating block */
        .aggregate-rating {
            text-align: center;
            margin-bottom: 40px;
        }
        .rating-left{
            background: var(--deep-navy);
            padding: 30px 25px;
            border-radius: 13px;
        }
        .aggregate-score {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 35px;
            font-weight: 800;
            color: var(--vivid-teal);
            line-height: 1;
        }

        .aggregate-label {
            font-size: 17px;
            font-weight: 600;
            color: #85B7EB;
        }

        .rating-stars {
            color: var(--orange);
            font-size: 18px;
            margin: 15px 0;
        }

        /* Rating bars */
        .rating-bar-row {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 4px;
            font-size: 13px;
            color: var(--muted-gray);
            padding-left: 20px;
        }

        .star-label .bi-star-fill{font-size: 13px;}
        .rating-bar-row .star-label {
            min-width: 14px;
            font-weight: 700;
            color: var(--charcoal);
            font-size: 17px;
        }

        .rating-bar-track {
            flex: 1;
            height: 9px;
            background: #EDEBE6;
            border-radius: 4px;
            overflow: hidden;
        }

        .rating-bar-fill {
            height: 100%;
            background: var(--orange);
            border-radius: 4px;
        }

        .rating-bar-count {
            min-width: 32px;
            font-size: 14px;
            text-align: right;
            color: var(--charcoal);
            font-weight: 700;
        }

        /* Review cards */
        .review-card {
            background: var(--warm-white);
            border: 1px solid var(--light-gray-border);
            border-radius: 12px;
            padding: 40px 20px 40px 30px;
            height: 100%;
        }
        .review-card-category {
            background: var(--pure-white);
            border: 1px solid var(--light-gray-border);
            border-radius: 12px;
            padding: 28px;
            height: 100%;
        }

        .review-stars {
            color: var(--orange);
            font-size: 14px;
            margin-bottom: 14px;
        }

        .review-text {
            font-size: 17px;
            color: var(--dark-charcoal);
            line-height: 1.65;
            margin-bottom: 18px;
            font-style: italic;
        }

        .review-author {
            font-size: 13px;
            font-weight: 700;
            color: var(--deep-navy);
        }

        .review-role {
            font-size: 12px;
            color: var(--muted-gray);
            margin-top: 2px;
        }

        /* Carousel controls */
        .reviews-carousel .carousel-control-prev,
        .reviews-carousel .carousel-control-next {
            width: 44px;
            height: 44px;
            background: var(--deep-navy);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
            transition: background 0.2s ease;
        }
        .reviews-carousel .carousel-control-prev { left: -22px; }
        .reviews-carousel .carousel-control-next { right: -22px; }
        .reviews-carousel .carousel-control-prev:hover,
        .reviews-carousel .carousel-control-next:hover {
            background: var(--dark-teal);
        }
        .reviews-carousel .carousel-control-prev-icon,
        .reviews-carousel .carousel-control-next-icon {
            width: 16px;
            height: 16px;
        }

        .reviews-carousel .carousel-indicators {
            bottom: -40px;
        }
        .reviews-carousel .carousel-indicators button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--light-gray-border);
            border: none;
            opacity: 1;
        }
        .reviews-carousel .carousel-indicators button.active {
            background-color: var(--dark-teal);
        }

        /* ── Owl Carousel overrides to match existing design ── */
        .testimonials-home-pagess-wrap {
            padding: 0 10px;
        }
        .testimonials-home-pagess .review-card {
            margin: 0 0 50px 0; /* bottom space for dots */
        }
        .testimonials-home-pagess.owl-carousel .owl-dots {
            margin-top: 20px;
            text-align: center;
        }
        .testimonials-home-pagess.owl-carousel .owl-dot span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--light-gray-border) !important;
            border: none;
            margin: 0 4px;
            transition: background 0.2s ease;
        }
        .testimonials-home-pagess.owl-carousel .owl-dot.active span,
        .testimonials-home-pagess.owl-carousel .owl-dot:hover span {
            background: var(--dark-teal) !important;
        }
        /* Hide owl default nav (we use dots only) */
        .testimonials-home-pagess.owl-carousel .owl-nav { display: none; }



        /* =====================================================
           SECTION 12: FAQ
           ===================================================== */
        .faq-section {

            padding: 20px 0;
        }

        .faq-section .accordion-item {
            border: 1px solid var(--light-gray-border);
            border-radius: 10px !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--pure-white);
        }

        .faq-section .accordion-button {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            color: var(--deep-navy);
            background-color: var(--warm-white);
            padding: 18px 24px;
            box-shadow: none;
        }
        .faq-section .accordion-button:not(.collapsed) {
            background-color: var(--warm-white);
            color: var(--dark-teal);
            box-shadow: none;
        }
        .faq-section .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B7A75'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .faq-section .accordion-body {
            font-size: 16px;
            color: var(--dark-charcoal);
            line-height: 1.7;
            padding: 15px 24px 20px;
        }
        .btn-orange-header {
            background-color: var(--orange) !important;
            color: #fff !important;
            font-weight: 700;
            font-size: 16px;
            border: none;
            border-radius: 8px;
            padding: 10px 15px;
            transition: background-color 0.25s ease, transform 0.15s ease;
        }

        /* =====================================================
           RESPONSIVE — MEDIA QUERIES
           ===================================================== */

        /* Tablet */
        @media (max-width: 991.98px) {
            .hero-heading {
                font-size: 38px;
            }
            .hero-section {
                padding: 48px 0 40px;
            }
            .hero-product-card {
                min-height: 280px;
                margin-top: 32px;
            }
            .industry-content-section .content-text h2 {
                font-size: 20px;
            }
            .cta-band-heading {
                font-size: 26px;
            }
            .aggregate-score {
                font-size: 44px;
            }
        }

        /* Mobile */
        @media (max-width: 767.98px) {
            .hero-heading {
                font-size: 30px;
            }
            .hero-subheadline {
                font-size: 15px;
            }
            .hero-section {
                padding: 36px 0 32px;
                text-align: center;
            }
            .hero-subheadline {
                max-width: 100%;
            }
            .hero-cta-group {
                justify-content: center;
            }
            .hero-product-card {
                min-height: 240px;
                margin-top: 28px;
            }
            .hero-card-box {
                width: 160px;
                height: 140px;
            }
            .hero-card-box i {
                font-size: 48px;
            }

            .stats-bar .row > div {
                margin-bottom: 16px;
            }

            .industry-content-section .content-text h2 {
                font-size: 18px;
            }

            .trust-bar .row {
                gap: 12px;
            }
            .trust-item {
                justify-content: flex-start;
            }

            .cta-form-inline {
                flex-direction: column;
            }
            .cta-form-inline input {
                width: 100%;
            }
            .cta-band-heading {
                font-size: 22px;
            }

            .form-wrapper {
                padding: 24px;
            }

            .reviews-carousel .carousel-control-prev { left: -10px; }
            .reviews-carousel .carousel-control-next { right: -10px; }

            .aggregate-score {
                font-size: 40px;
            }
        }

        /* Small mobile */
        @media (max-width: 575.98px) {
            .hero-heading {
                font-size: 26px;
            }
            .hero-card-tag {
                font-size: 11px;
                padding: 5px 12px;
            }
            .step-card {
                padding: 16px 8px;
            }

            .reviews-carousel .carousel-control-prev,
            .reviews-carousel .carousel-control-next {
                width: 36px;
                height: 36px;
            }
            .reviews-carousel .carousel-control-prev { left: -4px; }
            .reviews-carousel .carousel-control-next { right: -4px; }
        }

        .order-steps{
            background-color: var(--warm-white);
            padding: 29px;
            border-radius: 15px;
        }
        .order-heading h4{
            color: var(--deep-navy);
            font-size: 23px;
            font-weight: 700;
        }
        .number{
            color: var(--vivid-teal);
            font-size: 17px;
            font-weight: 700;
        }
        .order-desc p{
            font-size: 13px;
            font-weight: 400;
            margin-bottom: 15px;
            padding-bottom: 9px;
            border-bottom: 1px solid var(--light-gray-border);
        }
        .expert-chat{
           background-color: var(--dark-teal);
            padding: 15px;
            border-radius: 15px;
            text-align: center;
            color: #fff;
        }
        .expert-chat h3{
            font-size: 17px;
            font-weight: 400;
            margin-bottom: 8px;
        }
        .expert-chat p{
            font-size: 13px;
            margin-bottom: 8px;
        }

.btn-teal-green{
        padding: 16px 25px;
        font-size: 18px;
        background: #1ac8c0;
        border-radius: 10px;
        color: #fff;
        font-weight: 700;
        border: none;
    }
    .btn-teal-green:hover{color: #fff;}
