            * {
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }


            body {
                height: 100%;
                line-height: 1.6;
                color: #222;
                background: #fff;
                overflow-x: hidden;
            }

            .font-sans {
                font-family: var(--font-sans), ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"
            }

            .__variable_a3c0d3 {
                --font-sans: "__Inter_Tight_a3c0d3", "__Inter_Tight_Fallback_a3c0d3";
            }

            /* header */

            .header {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                width: 100%;
                overflow-x: hidden;
                z-index: 1000;
                background-color: #FFE9D5;
            }

            .header .navbar .container-fluid {
                width: 85%;
                margin: 0 auto;
                padding-left: 0;
                padding-right: 0;
                overflow: hidden;
            }

            @media (max-width: 992px) and (min-width:480px) {
                .navbar-collapse .right-buttons {
                    flex-wrap: wrap;
                    justify-content: flex-start;
                    gap: 0.5rem;
                }

                .left-links {
                    text-align: center;
                }
            }


            @media (max-width: 480px) {

                .navbar-nav.left-links li button,
                .navbar .btn {
                    font-size: 14px;
                }
            }


            /* Swiper Section */

            #swiper {
                width: 100%;
                padding: 40px 0;
            }

            /* Swiper Core */
            .swiper {
                width: 100%;
                height: auto;
                margin: 0 auto;
            }

            .swiper-wrapper {
                transition-timing-function: linear !important;
                user-select: none;
            }

            /* Slide Layout */
            .swiper-slide {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            /* 🟢 Default Image Style (for ≥1200px screens) */
            /* .swiper-slide img {
                display: block;
                height: 110px;
                margin: 0 18px;
                object-fit: contain;
            } */

            /* Hero Section */
            .hero {
                background-color: #FFF7F0;
            }

            .hero_section {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-wrap: wrap;
                /* margin-top: 60px; */
            }

            /* Text content */
            .hero_content {
                flex: 1;
                text-align: left;
                padding: 20px;
            }

            .hero_img img {
                width: 100%;
                height: auto;
            }

            .hero_content h1 {
                font-size: clamp(2rem, 5vw, 4rem);
                color: #000;
                line-height: 1.2;
                max-width: 573px;
                margin: 0;
                font-weight: 500;
            }

            .hero_content p {
                font-size: 1.5rem;
                color: #808080;
                margin: 1rem 0;
                font-weight: 400;
            }

            .hero_content h5 {
                font-weight: 500;
                margin-top: 0.75rem;
                color: gray;
            }

            .hero_img {
                flex: 1;
                text-align: center;
            }

            /* Mission Section */
            .mission {
                padding: 72px 0;
                background: #f8f9fa;
                color: #222;
            }



            .mission .text-center.mb-4 img {
                max-width: 200px;
            }

            .mission-content {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 24px;
            }

            .mission-text {
                flex: 1 1 65%;
            }

            .mission-text p.lead {
                font-size: 20px;
                color: #333;
                margin-bottom: 0.9rem;
            }



            /* Intro Section */
            .intro {
                background: #f8f9fa;
            }

            .intro .container {
                max-width: 1100px;
            }

            .intro h6 {
                color: #6c757d;
                font-weight: 500;
                margin-bottom: 0.5rem;
            }

            .intro h2 {
                font-size: 1.9rem;
                max-width: 720px;
                margin: 0 auto 1.25rem;
            }

            .intro_row .d-flex {
                gap: 0.5rem;
            }

            .intro_row h5 {
                font-size: 1.05rem;
                margin-bottom: 0.4rem;
            }

            .intro_row p {
                color: #555;
                font-size: 20px;
                max-width: 340px;
            }

            .intro .intro-step {
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                height: 100%;
            }

            .intro .intro-step p {
                flex-grow: 1;
                min-height: 100px;
            }

            .intro .intro-step button {
                margin-top: auto;
                align-self: center;
            }




            .inner-circle {
                z-index: 2;
                transition: all 0.5s ease-in-out;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            /* Outer circle setup */
            .outer-circle {
                position: relative;
                width: 70px;
                height: 70px;
                overflow: hidden;
            }

            /* Background animation circle */
            .bg-animation {
                position: absolute;
                top: 0;
                left: 0;
                width: 70px;
                height: 70px;
                background-color: rgba(0, 123, 255, 0.3);
                border-radius: 50%;
                animation: pulse 1.5s infinite;
                z-index: 0;
            }

            /* Inner circle (number) */
            .inner-circle {
                width: 40px;
                height: 40px;
                background-color: #0a89ff;
                color: #fff;
                font-weight: 600;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                z-index: 1;
            }

            /* Pulsating animation */
            @keyframes pulse {
                0% {
                    transform: scale(1);
                    opacity: 0.7;
                }

                50% {
                    transform: scale(1.5);
                    opacity: 0;
                }

                100% {
                    transform: scale(1);
                    opacity: 0.7;
                }
            }

            /* Optional hover scale for inner circle */
            .outer-circle:hover .inner-circle {
                transform: scale(1.2);
                transition: transform 0.3s ease;
            }

            /* Tracking Partners */
            .trackingPartnercontainer {
                background: #fff;
                text-align: center;
            }

            .demand_partner {
                background-color: #f1f1f1;
            }

            .trackingPartnercontainer h3 {
                font-weight: 700;
                margin-bottom: 1rem;
            }

            /* Demand Carousel (Owl) */
            .owl-demo1 .item {
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .owl-demo1 .item img {
                width: 180px;
                height: 100px;
                object-fit: contain;
            }


            /* Our Clients Swiper */

            .ourClients .swiper-slide {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 15px;
            }

            .ourClients .swiper-slide img {
                width: 160px;
                height: 90px;
                object-fit: contain;
            }

            /* real */
            .real-time-text h2 {
                font-size: 2rem;
                line-height: 1.2;
                margin-bottom: 1rem;
                color: #001B1F;
                max-width: 32rem;
            }

            .real-time-text p {
                font-size: 1rem;
                line-height: 1.6;
                text-align: left;
                color: #001B1F99;
                margin-bottom: 0;
            }

            .real-time-analytics img {
                width: 100%;
                height: auto;
                object-fit: cover;
                border-radius: 0.5rem;

            }

            /* qa tickets */
            .qa-ticket-text h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
                color: #111;
            }

            .qa-ticket-text p {
                font-size: 1rem;
                line-height: 1.6;
                color: #001B1F99;

            }

            .qa-tickets img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }

            .instant-noti-text h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
                color: #111;
            }

            .instant-noti-text p {
                font-size: 1rem;
                line-height: 1.6;
                color: #001B1F99;

            }


            /* Image Styling */
            .instant-notifications img {
                width: 100%;
                height: auto;
                object-fit: cover;
            }



            /* Footer */
            footer {
                background: #f8f8f6;
            }

            footer h3 {
                font-size: 1.3rem;
                margin-bottom: 0.25rem;
            }

            .footer_content h3 {
                font-size: 2rem;
                margin-bottom: 0.6rem;
            }

            .main-heading {
                line-height: 1.3;
                color: #000;
                margin-bottom: 1rem;
                max-width: 850px;
                font-weight: 500;
            }

            .main-heading span {
                color: #008A0E;
            }

            .main-text {
                color: #001B1F99;
                font-weight: 400;
            }




            a {
                color: black;
                text-decoration: none;
            }

            .footer_link ul li a {
                &:hover {
                    color: #008A0E;
                }
            }

            .padding {
                box-sizing: border-box;
                overflow-x: hidden;
            }

            @media (max-width: 1024px) {
                .hero_section {
                    display: flex;
                    flex-direction: column;
                    text-align: center;
                    justify-content: center;
                }

                .hero_img {
                    order: -1;
                    margin-bottom: 25px;
                }


                .hero_content {
                    text-align: center;
                    margin-top: 20px;
                    padding: 0 20px;
                }

                .hero_content h1 {
                    font-size: 2.5rem;
                    line-height: 1.3;
                }

                .hero_content h1 br {
                    display: none;
                }
            }


            @media (max-width: 768px) {
                .hero_img img {
                    max-width: 550px;
                    width: 100%;
                }

                .hero_content h1 {
                    font-size: 2rem;
                }

                .hero_content p {
                    font-size: 1rem;
                }

                .hero_content h1 br {
                    display: none;
                }

                .hero_content {
                    text-align: start;
                    margin-top: 20px;
                    padding: 0 20px;
                }
            }

            /* Media Queries -  */
            @media (min-width:1400px) {

                .header .navbar .container-fluid {
                    max-width: 85%;
                    margin: 0 auto;
                }

                .padding {
                    max-width: 70%;
                    margin: 0 auto;
                }


                .hero_content {
                    padding-top: 170px;
                }

                .hero_content p {
                    font-size: 1.8rem;
                }

                .hero_content h5 {
                    font-size: 1.5rem;
                }

                .swiper-slide img {
                    height: 100px;
                    width: 220px;
                    margin: 0 20px;
                    object-fit: contain;
                    border-radius: 8px;
                }

                .mission h1 {
                    font-size: 2.5rem;
                }

                .lead {
                    font-size: 1.6rem;
                }

                .intro h6 {
                    font-size: 1.6rem;
                }

                .intro h2 {
                    font-size: 2.5rem;
                }

                .intro h5 {
                    font-size: 1.7rem;
                }

                .intro p {
                    font-size: 1.3rem;
                }

                .trackingPartnercontainer h3 {
                    font-size: 3rem;
                }

                .real-time-text h2,
                .qa-ticket-text h2,
                .instant-noti-text h2 {
                    font-size: 4rem;
                    text-align: left;
                    margin: 0 20px;
                }

                .real-time-text p,
                .qa-ticket-text p,
                .instant-noti-text p {
                    font-size: 1.312rem;
                    text-align: left;
                    margin: 0 20px;
                }

                .main-heading {
                    font-size: 4rem;
                }

                .main-text {
                    font-size: 1.312rem;
                }

                footer h3 {
                    font-size: 1.6rem;
                }

                footer h5 {
                    font-size: 1.5rem;
                }

                .footer_link ul li a {
                    font-size: 1.2rem;
                }
            }


            /* 1200px and above  */
            @media (min-width: 1200px) and (max-width:1399.98px) {
                .hero_section {
                    padding-top: 100px;
                }

                .hero_content h1 {
                    font-size: 4rem;
                    max-width: 560px;
                }

                .hero_content p {
                    font-size: 1.5rem;
                }

                .lead {
                    font-size: 1.6rem;
                }

                .intro h2 {
                    font-size: 2.2rem;
                }

                .intro h6 {
                    font-size: 2rem;
                }

                .intro p {
                    font-size: 1.3rem;
                }

                .intro h5 {
                    font-size: 2rem;
                }

                .swiper-slide img {
                    height: 100px;
                    width: 250px;
                    margin: 0 20px;
                    object-fit: contain;
                    border-radius: 8px;
                }

                .mission .text-center.mb-4 h1 {
                    font-size: 3.5rem;
                }

                .trackingPartnercontainer h3 {
                    font-size: 3.5rem;
                }

                .real-time-text h2,
                .qa-ticket-text h2,
                .instant-noti-text h2 {
                    font-size: 3.7rem;
                    text-align: left;
                    margin: 0 20px;
                }

                .real-time-text p,
                .qa-ticket-text p,
                .instant-noti-text p {
                    font-size: 1.5rem;
                    text-align: left;
                    margin: 10px 20px;
                }


                .main-heading {
                    font-size: 3.812rem;
                }

                .main-text {
                    font-size: 1rem;
                }

                .padding {
                    padding-left: 7.5rem;
                    padding-right: 7.5rem;

                }

            }

            @media (min-width: 1025px) and (max-width: 1200px) {
                .hero_content {
                    padding-top: 120px !important;
                }
            }

            @media (min-width: 992px) and (max-width: 1024px) {
                .hero_content {
                    padding-top: 0 !important;
                }
            }

            /* 992px - 1199px */
            @media (min-width: 992px) and (max-width: 1199.98px) {
                .hero_content {
                    padding-top: 120px;
                }

                .hero_content h1 {
                    font-size: 3rem;
                    max-width: 100%;
                }

                .hero_content p {
                    font-size: 1.4rem;
                }

                .hero_img img {
                    width: 85% !important;
                    height: auto;
                    padding-top: 70px;
                }

                .swiper-slide {
                    margin: 0 120px;
                }

                .swiper-slide img {
                    height: 100px;
                    margin: 0 18px;
                }

                .mission h1 {
                    font-size: 2.5rem;
                }

                .mission-text p.lead {
                    font-size: 1.02rem;
                }

                .lead {
                    font-size: 1.35rem;
                    font-weight: 500;
                }

                .intro h5 {
                    font-size: 1.5rem;
                }

                .intro h5 {
                    font-size: 2rem;
                }

                .intro p {
                    font-size: 1.3rem;
                }

                .real-time-text h2,
                .qa-ticket-text h2,
                .instant-noti-text h2 {
                    font-size: 3rem;
                    text-align: left;
                    margin: 0 20px;
                }

                .real-time-text p,
                .qa-ticket-text p,
                .instant-noti-text p {
                    font-size: 1.2rem;
                    text-align: left;
                    margin: 10px 20px;
                }


                .main-heading {
                    font-size: 3rem;
                }

                .main-text {
                    font-size: 1.5rem;
                }

                .padding {
                    padding-left: 1.5rem;
                    padding-right: 1.5rem;

                }

                .hero_img img {
                    width: 80% !important;
                    height: auto;
                }

            }

            /* 769px - 991px  */
            @media (min-width: 769px) and (max-width: 991.98px) {
                .hero_section {
                    padding: 50px 0 40px;
                }

                .hero_content {
                    padding-right: 100px;
                    /* margin-left: 50px; */
                }

                .hero_content h1 {
                    font-size: 2.9rem;
                    max-width: 600px;
                    text-align: left;
                    /* margin-left: 50px; */
                }

                .hero_img img {
                    width: 60% !important;
                    height: auto;
                    padding-top: 20px;
                }

                .hero_content p {
                    font-size: 1.4rem;
                }


                .swiper-slide img {
                    height: 85px;
                    margin: 0 22px;
                }

                .mission {
                    padding: 56px 0;
                }

                .mission h1 {
                    font-size: 2.6rem;
                }

                .mission_row {
                    padding: 0 30px;
                }

                .lead {
                    font-weight: 400;
                    font-size: 1.45rem;
                }

                .intro h6 {
                    font-size: 1.5rem;
                }

                .intro h2 {
                    font-size: 2rem;
                }

                .intro h5 {
                    font-size: 2rem;
                }

                .intro p {
                    font-size: 1.3rem;
                    padding: 0 60px;
                }



                .real-time-text h2,
                .qa-ticket-text h2,
                .instant-noti-text h2 {
                    font-size: 3rem;
                    text-align: left;
                }

                .real-time-text p,
                .qa-ticket-text p,
                .instant-noti-text p {
                    font-size: 1.3rem;
                    text-align: left;
                }

                .real-time-analytics,
                .qa-tickets,
                .instant-notifications {
                    padding: 0 30px;
                }

                .footer_content {
                    padding: 0 30px;
                }


                .main-heading {
                    font-size: 2.9rem;
                }
            }

            /* 577px - 768px  */
            @media (min-width: 577px) and (max-width: 768.98px) {
                .hero_section {
                    padding: 100px 0 30px;
                }

                .hero_content h1 {
                    font-size: 2.7rem;
                    line-height: 1.171;
                    max-width: 100%;
                    /* margin-left: 80px; */
                }

                .hero_content p {
                    font-size: 1.5rem;
                    line-height: 1.138;
                    /* margin: 0 80px; */
                    font-weight: 500;
                }

                .hero_content h5 {
                    line-height: 1.381;
                    font-size: 1.5rem;
                    font-weight: 600;
                    text-align: left;
                    /* margin: 0 80px; */

                }

                .swiper-slide {
                    margin: 0 50px;
                }

                .swiper-slide img {
                    height: 70px;
                    margin: 0 12px;
                }

                .mission h1 {
                    font-size: 3rem;
                }

                .mission-content {
                    flex-direction: column-reverse;
                    text-align: center;
                }


                .mission-text p.lead {
                    font-size: 16px;
                    color: #333;
                    margin-bottom: 0.9rem;
                }


                .lead {
                    font-size: 1.5rem;
                    font-weight: 400;
                    margin: 10px 50px;
                }

                .intro h6 {
                    font-size: 1.5rem;
                }

                .intro h2 {
                    font-size: 1.9rem;
                    max-width: 720px;
                    padding: 5px 20px;
                }

                .intro h5 {
                    font-size: 2rem;
                }

                .intro p {
                    font-size: 1.3rem;
                    margin: 5px 0;
                }

                .trackingPartnercontainer h3 {
                    font-weight: 700;
                    margin-bottom: 1rem;
                    font-size: 2.3rem;
                }

                .real-time-text h2,
                .qa-ticket-text h2,
                .instant-noti-text h2 {
                    font-size: 2.25rem;
                    text-align: start;
                    margin: 0 20px;
                }

                .real-time-text p,
                .qa-ticket-text p,
                .instant-noti-text p {
                    font-size: 1.2rem;
                    text-align: start;
                    margin: 0 20px;

                }

                .real-time-analytics img,
                .qa-tickets img,
                .instant-notifications img {
                    padding: 20px;
                }


                .footer {
                    padding: 10px 25px;
                }

                .main-heading {
                    font-size: 2.4rem;
                }


                .footer_link {
                    text-align: start;
                }
            }

            /* 481px - 576px */
            @media (min-width: 481px) and (max-width: 576px) {
                .hero_section {
                    padding: 100px 12px 30px;
                }

                .hero_content {
                    margin: 0 20px;
                }

                .hero_content h1 {
                    font-size: 2.5rem;
                    line-height: 1.4;
                    text-align: left;
                }

                .hero_content p {
                    font-size: 1.45rem;
                }


                .swiper-slide img {
                    height: 60px;
                    margin: 0 10px;
                }

                .mission .text-center.mb-4 h1 {
                    font-size: 1.6rem;
                }

                .lead {
                    font-size: 1.4rem;
                    margin: 30px;
                }

                .intro h5 {
                    font-size: 1.5rem;
                }

                .intro p {
                    font-size: 1.2rem;
                }

                .real-time-text h2,
                .qa-ticket-text h2,
                .instant-noti-text h2 {
                    font-size: 1.8rem;
                    text-align: center;
                    margin: 20px;
                }

                .real-time-text p,
                .qa-ticket-text p,
                .instant-noti-text p {
                    font-size: 1.4rem;
                    text-align: center;
                    margin: 10px 20px;
                }

                .real-time-analytics img,
                .qa-tickets img,
                .instant-notifications img {
                    padding: 0 20px;
                }

                .main-heading {
                    font-size: 2.4rem;
                }

                .footer {
                    padding: 0 50px;
                }

                .footer-section .text-start {
                    text-align: center !important;
                }

                .footer-section ul {
                    padding-left: 0;
                }

                .footer-section h5 {
                    margin-bottom: 10px;
                }
            }

            /* 0px - 480px  */
            @media (max-width: 480px) {
                .hero_section {
                    padding-top: 100px;
                }

                .hero_content h1 {
                    font-size: 2rem;
                }

                .hero_content p {
                    font-size: 1.25rem;
                }

                .swiper-slide img {
                    height: 50px;
                    margin: 0 8px;
                }

                .mission-content {
                    flex-direction: column-reverse;
                    text-align: center;
                    gap: 18px;
                    padding: 0 8px;
                }

                .mission h1 {
                    font-size: 2rem;
                }



                .intro h6 {
                    font-size: 1.4rem;
                }

                .intro h2 {
                    font-size: 1.6rem;
                    padding: 0 12px;
                }

                .intro h5 {
                    font-size: 2rem;
                }

                .intro p {
                    font-size: 1.2rem;
                }

                .lead {
                    margin: 20px 30px;
                }

                .trackingPartnercontainer h3 {
                    font-size: 2.3rem;
                }

                .outer-circle,
                .bg-animation {
                    width: 70px;
                    height: 70px;
                }

                .inner-circle {
                    width: 30px;
                    height: 30px;
                }


                .instant-noti-text h2,
                .qa-ticket-text h2,
                .real-time-text h2 {
                    font-size: 2rem !important;
                    margin: 20px 0;
                    text-align: center;
                }

                .instant-noti-text p,
                .qa-ticket-text p,
                .real-time-text p {
                    font-size: 1.2rem !important;
                    margin: 10px 20px;
                    text-align: center;
                }

                .real-time-analytics img,
                .qa-tickets img,
                .instant-notifications img {
                    padding: 0 20px;
                }

                .footer_content {
                    margin: 10px 30px;
                }

                .main-heading {
                    font-size: 2.25rem;
                }

                .main-text {
                    font-size: 1rem;
                    padding-right: 10px;
                }

                .footer_content h3 {
                    font-size: 1.1rem;
                }

                .footer_link {
                    text-align: center;
                }
            }