
        :root {
            --accent-color: #0d83fd;
            --heading-color: #2d465e;
        }
        body {
            font-family: 'Roboto', sans-serif;
        }
        h1, h2, h3 {
            font-family: 'Nunito', sans-serif;
            color: var(--heading-color);
        }
        .background-color {
            background: linear-gradient(135deg,
                rgba(13, 131, 253, 0.05) 50%,
                rgba(13, 131, 253, 0.02) 25%, 
                transparent 50%);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(13, 131, 253, 0.1);
            color: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 1.5rem;
        }
        .quote-icon {
            font-size: 48px;
            color: rgba(13, 131, 253, 0.1);
            position: absolute;
            top: 10px;
            right: 20px;
        }
        .stats-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
            font-family: 'Nunito', sans-serif;
        }
        .stats-label {
            font-size: 1.1rem;
            color: var(--heading-color);
        }
        .seo-icon {
            font-size: 3rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        .benefit-card {
            transition: transform 0.3s ease;
        }
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        /* <!-- process section css--> */

        .process-step {
          position: relative;
          padding: 20px;
          margin-bottom: 30px;
          background: white;
          border-radius: 10px;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
        }
      
        .process-step::after {
          content: '';
          position: absolute;
          left: 50%;
          bottom: -30px;
          height: 30px;
          border-left: 2px dashed #0d6efd;
          transform: translateX(-50%);
        }
      
        .process-step:last-child::after {
          display: none;
        }
      
        .step-icon {
          font-size: 1.5rem;
          color: #0d6efd;
          margin-right: 10px;
        }



        /* <!-- stats section css--> */


            .scroll-container {
                overflow: hidden;
                width: 100%;
                position: relative;
                padding: 5px 0;
            }

            .scroll-wrapper {
                display: flex;
                gap: 20px;
                flex-wrap: nowrap;
            }

            .scroll-right {
                animation: scrollRight 15s linear infinite;
            }

            .scroll-left {
                animation: scrollLeft 15s linear infinite;
            }

            @keyframes scrollRight {
                0% { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }

            @keyframes scrollLeft {
                0% { transform: translateX(-50%); }
                100% { transform: translateX(0); }
            }

            .scroll-wrapper:hover {
                animation-play-state: paused;
            }

            .team-card {
                min-width: 320px;
                flex-shrink: 0;
                border-radius: 60px;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .team-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
            }

            .tool-icon {
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            @media (max-width: 576px) {
                .team-card {
                    min-width: 280px;
                    border-radius: 20px;
                }
                .tool-icon {
                    width: 40px;
                    height: 40px;
                }
            }


            
    /* <!-- stats section css--> */

    
    .circle-progress svg {
        transform: rotate(-90deg);
    }
    
    .circle-progress circle {
        fill: none;
        stroke-width: 8;
        transition: stroke-dashoffset 1.5s ease-in-out;
    }
    
    .circle-progress .bg {
        stroke: #f0f0f0;
    }
    
    .circle-progress .progress {
        stroke: #007bff;
        stroke-dasharray: 439.6;
        stroke-dashoffset: 439.6;
        transform-origin: center;
        transform: rotate(-90deg);
    }
    
    .circle-progress .percentage {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.5rem;
        font-weight: bold;
        color: #333;
    }

    .circle-progress {
        position: relative;
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    