 /* slider  */
     .company-slider-container {
            position: relative;
            overflow: hidden;
            padding: 40px 0;
            background-color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
        }


        #mobileTestimonials{
  display: none;
}
        .company-slider-track {
            display: flex;
            animation: scroll 20s linear infinite;
        }

        .company-slider-item {
            flex: 0 0 20%;
            min-width: 240px;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .company-slider-item img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        /* Pause animation on hover */
        .company-slider-track:hover {
            /* animation-play-state: paused; */
        }

        
        
        /* .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }
        .delay-5 { transition-delay: 0.5s; }
        .delay-6 { transition-delay: 0.6s; } */
        
        /* Spacer elements before and after sticky section for context */
        .stick-features-spacer {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #f8f9fa;
            color: #333;
            text-align: center;
            padding: 20px;
        }
        
        .spacer-title {
            font-size: 2.5rem;
            font-weight: var(--fh700);
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .spacer-subtitle {
            font-size: 1.2rem;
            max-width: 600px;
            color: #7f8c8d;
        }
        
        .scroll-indicator {
            margin-top: 30px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }

        @keyframes spin{
            0%{
                rotate: 0deg;
            }
            100%{
                rotate: 360deg;
            }
        }

            img[alt="background"]{
                animation: spin 200s ;
            }






/* new css */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            /* padding: 0 20px; */
        }

        /* Section title styling */
        .section-title {
            text-align: center;
            padding: 20px 0 40px 0;
            background-color: #f8f9fa;
        }

        .section-title h2 {
            font-size: 2.3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .highlight {
            color: #3498db;
        }

        /* Main features container */
        .stick-features-container {
            position: relative;
        }

        .stick-features-wrapper {
            display: flex;
            min-height: 100vh;
            position: sticky;
            /* top: 54px; */
            background: white;
            z-index: 10;
        }

        /* Left navigation - stays sticky */
        .stick-features-nav {
            width: 25%;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            background-color: #ededed;
            padding: 20px;
            gap: 15px;
            position: sticky;
            top: 240px;
            height: 80vh;
            overflow-y: auto;
        }

        .stick-features-button {
            background-color: #ffffff;
            color: #555;
            border: none;
            cursor: pointer;
            padding: 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: center;
        }

        .stick-features-button:hover {
            background-color: #e3f2fd;
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .stick-features-button.active {
            background-color: #3498db;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(52, 152, 219, 0.3);
        }

        .category-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
        }

        /* Right content area - scrollable */
        .stick-features-sections-container {
            width: 75%;
            flex: 1;
        }

        .stick-features-section {
            padding: 40px 0px;
            /* min-height: 100vh; */
            background: #ededed;
        }

        .stick-features-section:nth-child(even) {
            background: #ededed;
        }

        /* Module styling */
        .modules-container {
            max-width: 100%;
        }

        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .module-card {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #eaeaea;
        }

        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }

        .module-header {
            padding: 10px;
            background: linear-gradient(45deg, #f3f4f6, #fff);
            display: flex;
            align-items: center;
            border-bottom: 1px solid #f0f0f0;
        }

        .module-header.blue {
            background: linear-gradient(45deg, #e3f2fd, #fff);
        }

        .module-header.red {
            /* background: linear-gradient(45deg, #ffebee, #fff); */
            background: linear-gradient(45deg, #e3f2fd, #fff);
        }

        .module-header.green {
            /* background: linear-gradient(45deg, #e8f5e8, #fff); */
            background: linear-gradient(45deg, #e3f2fd, #fff);
        }

        .module-icon {
            width: 45px;
            height: 45px;
            background-color: #3498db;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 15px;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }

        .stick-features-section-2 .module-icon {
            background-color: #3498db;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }

        .stick-features-section-3 .module-icon {
            background-color: #3498db;
            box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
        }

        .stick-features-section-4 .module-icon {
            background-color: #3498db;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
        }

        .stick-features-section-5 .module-icon {
            background-color: #3498db;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }

        .stick-features-section-6 .module-icon {
            background-color: #3498db;
            box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
        }

        .module-title {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }

        .module-content {
            padding: 20px;
        }

        .module-description {
            color: #7f8c8d;
            font-size: 0.95rem;
            line-height: 1.6;
            /* margin-bottom: 15px; */
        }

        .module-footer {
            display: none;
            justify-content: space-between;
            align-items: center;
        }

        .learn-more {
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .stick-features-section-2 .learn-more {
            color: #e74c3c;
        }

        .stick-features-section-3 .learn-more {
            color: #2ecc71;
        }

        .learn-more:hover {
            opacity: 0.8;
        }

        .arrow-icon {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .learn-more:hover .arrow-icon {
            transform: translateX(3px);
        }

        .feature-status {
            background-color: #f8f9fa;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            color: #7f8c8d;
        }

        .feature-status.Popular {
            background-color: #3498db;
            color: white;
        }

        .feature-status.Core {
            background-color: #2c3e50;
            color: white;
        }

        .feature-status.Essential {
            background-color: #e74c3c;
            color: white;
        }

        /* Section headers */
        .section-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .section-header h3 {
            font-size: 1.7rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .stick-features-wrapper {
                flex-direction: column;
            }

            #testimonialsDiv{
                display: none;
            }

            #mobileTestimonials{
          display: block !important;
        }

        .about-hero-container {
            border-radius: 0px !important;
        }

            .stick-features-nav {
                width: 100%;
                height: auto;
                position: relative;
                flex-direction: row;
                overflow-x: auto;
                padding: 15px;
                display: none;
            }

            .module-icon{
                width: 35px;
    height: 35px;

            }
            #section-title-product{
                top: 40px !important
            }

            .stick-features-button {
                min-width: 150px;
                padding: 15px 20px;
            }

            .stick-features-sections-container {
                width: 100%;
            }

            .modules-grid {
                grid-template-columns: 1fr;
                padding: 10px;
                gap: 10px;
            }
            .fa-solid, .fas {

    font-size: 12px;
}

            .section-header h3 {
                font-size: 1.2rem;
            }
        }