   .feature-section-two {
            position: relative;
            padding: 50px 0 0;
            background: #0a192f;
            overflow: hidden;
        }

        .banner {
            position: absolute;
            inset: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .arc {
            width: 50%;
            /* adjust arc width */
            height: 100%;
            position: absolute;
            right: 0;
            top: 0;
            transform: rotate(180deg);
            transform-origin: center;
        }

        .feature-section-two .auto-container {
            position: relative;
            z-index: 5;
        }

        
            @media (max-width: 350px) {
                .arc {
                    width: 100% !important;
                    height: 65%;
                    /* arc height on mobile */
                    right: 0;
                    top: 45%;
                    bottom: 0;
                    left: 0;
                    transform: rotate(-90deg);
                    /* optional, to flip the curve */
                    transform-origin: center;
                }


            }

        @media (min-width:351px) and (max-width: 767px) {
            .arc {
                width: 100% !important;
                height: 62%;
                /* arc height on mobile */
                right: 0;
                top: 40%;
                bottom: 0;
                left: 0;
                transform: rotate(-90deg);
                /* optional, to flip the curve */
                transform-origin: center;
            }



        }


       
        /* Title */

        strong{
            font-weight: bold;
        }

      

       

      


        .main-footer .pattern-layer.style-two {
    background-position: left bottom;
    bottom: 0px;
}

 .main-footer{
    margin-top: 0px;
 }

 .cta-box{
    border:solid 1px rgba(0, 0, 0, 0.2);
    padding: 30px 0px;
    background-color: #0a192f;
 }

 .circle-wrapper {
            position: relative;
            width: 700px;
            height: 700px;
            max-width: 90vw;
            max-height: 90vw;
            margin: 0 auto;
        }

        /* outer dashed circle */
        .circle-wrapper::before {
            content: "";
            position: absolute;
            inset: 12%;
            border-radius: 50%;
            border: 3px dashed rgba(0, 0, 0, 0.4);
        }

        /* step circles */
        .step {
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            padding: 16px 12px;
            box-sizing: border-box;
            text-align: center;
           
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            

            background: #FAF9F6;
            box-shadow: rgba(100, 181, 246, 0.15) 1.95px 1.95px 2.6px;
        }

       


        /* desktop positions */
        .step1 {
            top: 0;
            left: 50%;
            transform: translate(-50%, 0);
            border:solid 2px #3a8bff;
        }

        .step2 {
            top: 50%;
            right: 0;
            transform: translate(0, -50%);
            border:solid 2px #b2d924;
        }

        .step3 {
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 0);
            border:solid 2px #ff5ca7;
        }

        .step4 {
            top: 50%;
            left: 0;
            transform: translate(0, -50%);
            border:solid 2px #39ca9c;
        }


        /* ---------------- MOBILE VERSION ---------------- */
        @media (max-width: 768px) {

            .circle-wrapper {
                width: 100%;
                height: auto;
                max-height: none;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 22px;
            }

            /* hide circle + arcs */
            .circle-wrapper::before {
                display: none;
            }

            /* each circle becomes stacked */
            .step {
                position: relative;
                width: 300px;
                height: 300px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                margin: 0 auto;
            }

            /* down arrow (pure CSS triangle) */
            .step::after {
                content: "";
                position: absolute;
                /* <— THIS makes it appear outside */
                bottom: -18px;
                /* <— Pushes arrow below circle */
                left: 50%;
                transform: translateX(-50%);

                width: 0;
                height: 0;

                border-left: 12px solid transparent;
                border-right: 12px solid transparent;
                border-top: 16px solid black;
            }

            /* last circle has no arrow */
            .step4::after {
                display: none;
            }

            .step1,
            .step2,
            .step3,
            .step4 {
                position: relative !important;
                top: auto !important;
                left: auto !important;
                right: auto !important;
                bottom: auto !important;
                transform: none !important;
                margin: 10px auto;
                /* centers the circle */
            }


        }


        .light-bordered-table {
            width: 100%;
            border-collapse: collapse;
            text-align: center;



        }

        /* Header */
        .light-bordered-table thead th {
            background: #f5f5f5;
            color: #007acc;
            padding: 14px 20px;
            font-weight: 600;
            border: 1px solid #d0d0d0;
            text-align: center;
        }

        /* Body */
        .light-bordered-table tbody td {
            padding: 14px 20px;
            border: 1px solid #e1e1e1;
        }

        /* Highlight column */
        .light-bordered-table td.highlight {
            background: #f5f5f5;
            font-weight: 500;
            color: #005fa3;
        }

        /* Hover */
        .light-bordered-table tbody tr:hover td {
            background: #f9f9f9;
            transition: 0.2s;
        }

        .rapit-icon {
            width: 50px;
            margin-bottom: 10px;
        }

        /* ----------------------------- */
        /*     RESPONSIVE TABLE STYLE    */
        /* ----------------------------- */

        @media (max-width: 768px) {

            .responsive-table thead {
                display: none;
                /* hide default header */
            }

            .responsive-table tr {
                display: block;
                margin-bottom: 12px;
                border: 1px solid #e1e1e1;
                border-radius: 8px;
                overflow: hidden;
            }

            .responsive-table td {
                display: flex;
                justify-content: space-between;
                padding: 12px 16px;
                font-size: 14px;
            }

            .responsive-table td::before {
                content: attr(data-label);
                font-weight: 500;
                color: #007acc;
            }

            .responsive-table td.highlight {
                background: #f5f5f5;;
            }
        }

