        :root {
            --primary-purple: #7143fe;
            --primary-orange: #ff5622;
            --dark-blue: #0f172a;
            --light-gray: #f8fafc;
        }

        body {
            background-color: #ffffff;
        }

        .ai-hero {
            width: 100%;
            background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            padding: 160px 0 30px;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
        }

        .ai-hero::before {
            content: '';
            position: absolute;
            top: -10%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(113, 67, 254, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .ai-hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            align-items: center;
            gap: 60px;
            position: relative;
            z-index: 2;
        }

        .ai-hero-content {
            flex: 1;
        }

        .ai-hero-image {
            flex: 1;
            text-align: right;
        }

        .ai-hero-image img {
            max-width: 100%;
            border-radius: 30px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .badge {
            display: inline-flex;
            width: fit-content;
            align-items: center;
            background: rgba(113, 67, 254, 0.1);
            color: var(--primary-purple);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ai-hero h1 {
            font-size: clamp(40px, 5vw, 30px);
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--dark-blue);
        }

        .ai-hero p {
            font-size: 15px;
            color: #64748b;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .product-hero-btns {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .product-hero-btns .contact-btn {
            background: linear-gradient(135deg, var(--primary-purple) 0%, #4653e5 100%);
            color: #fff !important;
            padding: 16px 36px;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(113, 67, 254, 0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: none;
            white-space: nowrap !important;
            width: auto !important;
            min-width: 200px;
        }

        .product-hero-btns .contact-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(113, 67, 254, 0.3);
            background: linear-gradient(135deg, #4653e5 0%, var(--primary-purple) 100%);
        }

        .section-padding {
            padding: 40px 0;
            width: 100%;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
        }

        .container-box {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: clamp(30px, 4vw, 42px);
            color: var(--dark-blue);
            margin-bottom: 20px;
        }

        .section-header p {
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-size: 17px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #fff;
            padding: 40px;
            border-radius: 24px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            border-color: var(--primary-purple);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(113, 67, 254, 0.08);
        }

        .service-card i {
            font-size: 40px;
            color: var(--primary-purple);
            margin-bottom: 25px;
            display: block;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark-blue);
        }

        .service-card p {
            color: #64748b;
            font-size: 15px;
            line-height: 1.7;
        }

        /* Left/Right Design Section */
        /* Refined Left/Right Design Section */
        .split-section {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 40px;
            margin-top: 40px;
        }

        .split-section.reverse {
            flex-direction: row-reverse;
        }

        .split-content {
            flex: 1.2;
        }

        .split-image {
            flex: 0.8;
            padding: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Subtle background accent for images */
        .split-image::after {
            content: '';
            position: absolute;
            width: 80%;
            height: 80%;
            background: linear-gradient(135deg, rgba(113, 67, 254, 0.1), rgba(255, 86, 34, 0.05));
            border-radius: 50%;
            z-index: -1;
            filter: blur(40px);
        }

        .split-image img {
            width: 100%;
            height: 300px;
            max-width: 520px;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
            animation: float-img 6s ease-in-out infinite;
        }

        @keyframes float-img {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        .split-image:hover img {
            transform: scale(1.02);
            box-shadow: 0 40px 80px rgba(113, 67, 254, 0.15);
        }

        .feature-list {
            list-style: none;
            margin-top: 30px;
        }

        .feature-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            font-size: 16px;
            color: #334155;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            background: var(--primary-orange);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
        }

        /* Process Section */
        .process-bg {
            background-color: var(--dark-blue);
            color: #fff;
        }

        .process-bg .section-header h2 {
            color: #fff;
        }

        /* Timeline Process Section */
        .timeline-wrapper {
            position: relative;
            max-width: 1000px;
            margin: 40px auto 0;
            padding: 20px 0;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, transparent, rgba(255, 86, 34, 0.3), rgba(113, 67, 254, 0.3), transparent);
            transform: translateX(-50%);
        }

        .timeline-step {
            position: relative;
            width: 100%;
            margin-bottom: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .timeline-step:last-child {
            margin-bottom: 0;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            width: 20px;
            height: 20px;
            background: var(--primary-orange);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 5;
            box-shadow: 0 0 15px var(--primary-orange);
        }

        .timeline-card {
            width: 45%;
            padding: 22px 28px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            position: relative;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .timeline-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-purple);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .timeline-step.left {
            justify-content: flex-start;
        }

        .timeline-step.right {
            justify-content: flex-end;
        }

        .step-number {
            position: absolute;
            top: -7px;
            right: 20px;
            font-size: 40px;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
            z-index: 1;
        }

        .timeline-card h3 {
            color: var(--primary-orange);
            margin-bottom: 10px;
            font-size: 21px;
            position: relative;
            z-index: 2;
        }

        .timeline-card p {
            color: #cbd5e1;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 768px) {
            .timeline-line {
                left: 30px;
            }

            .timeline-dot {
                left: 30px;
            }

            .timeline-card {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                margin-bottom: 40px;
            }

            .timeline-step {
                justify-content: flex-start !important;
            }
        }

        /* Tech Section */
        .tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            width: 100%;
        }

        @media (min-width: 992px) {
            .tech-categories {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .tech-box {
            background: #fff;
            padding: 30px 15px;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            flex: 1;
            min-width: 0;
            border: 1px solid #f1f5f9;
            text-align: left;
        }

        .tech-box h5 {
            color: var(--primary-purple);
            font-size: 18px;
            margin-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 10px;
        }

        .tech-box h5 {
            color: var(--primary-purple);
            font-size: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 8px;
        }

        .tech-box ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 0;
            margin: 0;
        }

        .tech-box ul li {
            font-size: 13px;
            font-weight: 500;
            color: #475569;
            line-height: 1.4;
        }

        .tech-box ul li::before {
            display: none;
        }

        /* FAQ Section */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 30px;
            background: #fff;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8fafc;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            background: #fff;
            transition: all 0.3s ease;
            color: #64748b;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 20px;
            max-height: 200px;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(180deg);
        }

        /* Global Branding Fix */
        .orange-bg {
            background-color: var(--primary-orange);
            color: white;
            padding: 2px 10px;
            border-radius: 5px;
        }

        @media (max-width: 991px) {
            .ai-hero-inner {
                flex-direction: column;
                text-align: center;
            }

            .ai-hero-content {
                order: 2;
            }

            .ai-hero-image {
                order: 1;
                text-align: center;
            }

            .ai-hero p {
                margin: 0 auto 40px;
            }

            .split-section {
                flex-direction: column !important;
                gap: 40px;
            }
        }

        /* Why Choose Us Redesign */
        .choose-us-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .choose-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .subtitle-red {
            color: #ff5622;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: -15px;
        }

        .choose-left h2 {
            font-size: 42px;
            color: #0f172a;
            margin: 0;
            line-height: 1.2;
        }

        .choose-left p {
            color: #64748b;
            font-size: 16px;
            line-height: 1.7;
        }

        .video-thumb-container {
            position: relative;
            margin-top: 20px;
            display: inline-block;
        }

        .video-thumb {
            width: 100%;
            max-width: 480px;
            border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .video-thumb img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }

        .video-thumb:hover img {
            transform: scale(1.05);
        }

        .play-btn {
            position: absolute;
            bottom: 40px;
            right: 80px;
            width: 60px;
            height: 60px;
            background: #ff3b30;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(255, 59, 48, 0.4);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .play-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 15px solid white;
            margin-left: 4px;
        }

        .play-btn:hover {
            transform: scale(1.1);
            background: #e0352b;
        }

        .choose-right {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .choose-card {
            background: #fff;
            padding: 40px 25px 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }

        .choose-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        .card-accent {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 50px;
            background: rgba(255, 86, 34, 0.08);
            border-radius: 0 0 100px 100px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-accent span {
            color: #ff5622;
            font-weight: 800;
            font-size: 18px;
            margin-top: -10px;
        }

        .choose-card h3 {
            font-size: 19px;
            color: #0f172a;
            margin-bottom: 12px;
            margin-top: 15px;
        }

        .choose-card p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 991px) {
            .choose-us-section {
                grid-template-columns: 1fr;
            }

            .play-btn {
                right: 40px;
            }
        }

        @media (max-width: 576px) {
            .choose-right {
                grid-template-columns: 1fr;
            }
        }

        /* Premium Flip Tech Cards */
        .tech-categories {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
            perspective: 1500px;
        }

        .tech-card {
            height: 280px;
            background: transparent;
            cursor: pointer;
        }

        .tech-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .tech-card:hover .tech-card-inner {
            transform: rotateY(180deg);
        }

        .tech-card-front,
        .tech-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 24px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        /* Interactive Benefits Section */
        .benefits-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            width: 100%;
        }

        .benefit-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px;
            border: 1px solid #eef2f6;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 20px;
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(113, 67, 254, 0.05) 0%, rgba(255, 86, 34, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .benefit-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(113, 67, 254, 0.2);
            box-shadow: 0 25px 50px rgba(113, 67, 254, 0.1);
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-icon-wrapper {
            width: 60px;
            height: 60px;
            background: #f8fafc;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .benefit-card:hover .benefit-icon-wrapper {
            background: var(--primary-purple);
            transform: rotate(10deg);
        }

        .benefit-icon-wrapper svg {
            width: 30px;
            height: 30px;
            color: var(--primary-purple);
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon-wrapper svg {
            color: #fff;
            transform: scale(1.1);
        }

        .benefit-info {
            position: relative;
            z-index: 2;
        }

        .benefit-info h3 {
            font-size: 22px;
            color: var(--dark-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .benefit-info p {
            font-size: 15px;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }

        .benefit-link {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: auto;
            color: var(--primary-purple);
            font-weight: 600;
            font-size: 14px;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        .benefit-card:hover .benefit-link {
            opacity: 1;
            transform: translateX(0);
        }

        .benefit-card .hover-bg-icon {
            position: absolute;
            bottom: -20px;
            right: -20px;
            font-size: 100px;
            opacity: 0.03;
            transition: all 0.5s ease;
            color: var(--dark-blue);
            pointer-events: none;
        }

        .benefit-card:hover .hover-bg-icon {
            transform: scale(1.2) rotate(-15deg);
            opacity: 0.08;
            color: var(--primary-purple);
        }

        .tech-card-front {
            background: var(--primary-purple);
            color: #fff;
        }

        .tech-card-back {
            background: var(--primary-purple);
            color: #fff;
            transform: rotateY(180deg);
            text-align: left;
            align-items: flex-start;
        }

        .tech-icon {
            font-size: 40px;
            color: whitesmoke;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
        }

        .tech-icon svg {
            width: 50px;
            color: orange;
            height: 50px;
            fill: none;
            stroke: currentColor;
            stroke-width: 1.5;
        }

        .tech-card-front h5 {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            margin: 0;
            letter-spacing: 0.5px;
        }

        .tech-card-back h5 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            color: whitesmoke;
        }

        .tech-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            width: 100%;
        }

        .tech-card ul li {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .tech-card ul li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: #ffcc00;
            font-size: 12px;
        }

        @media (max-width: 1100px) {
            .tech-categories {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-modern-wrapper {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .tech-categories {
                grid-template-columns: 1fr;
            }

            .tech-card {
                height: 240px;
            }
        }

        /* ===== Modern Testimonial Section Redesign ===== */
        .testimonial-section {
            background: #ffffff;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .testimonial-badge {
            background: rgba(113, 67, 254, 0.08);
            color: var(--primary-purple);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            border: 1px solid rgba(113, 67, 254, 0.15);
        }

        .testimonial-slider-container {
            width: 100%;
            max-width: 1200px;
            height: 420px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 2000px;
            position: relative;
            margin-top: 20px;
        }

        .testi-card {
            position: absolute;
            width: 620px;
            background: #ffffff;
            border-radius: 28px;
            padding: 45px 40px;
            transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
            opacity: 0;
            transform: scale(0.8) translateZ(-100px);
            z-index: 1;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 320px;
        }

        /* Large Brand Quote Icon */
        .testi-card::after {
            content: '\f10e';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            top: 40px;
            right: 50px;
            font-size: 80px;
            color: rgba(113, 67, 254, 0.04);
            pointer-events: none;
        }

        .testi-card.active {
            opacity: 1;
            transform: scale(1) translateZ(0);
            z-index: 3;
            box-shadow: 0 50px 120px rgba(113, 67, 254, 0.08);
            border-color: rgba(113, 67, 254, 0.1);
        }

        .testi-card.prev {
            opacity: 0.4;
            transform: scale(0.85) translateX(-60%) rotateY(15deg);
            z-index: 2;
            pointer-events: none;
            filter: blur(2px);
        }

        .testi-card.next {
            opacity: 0.4;
            transform: scale(0.85) translateX(60%) rotateY(-15deg);
            z-index: 2;
            pointer-events: none;
            filter: blur(2px);
        }

        .testi-text {
            color: #334155;
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 30px;
            font-weight: 500;
            font-style: italic;
            position: relative;
            z-index: 2;
        }

        .testi-user-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #f1f5f9;
            padding-top: 30px;
        }

        .testi-user-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .testi-avatar {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            object-fit: cover;
            border: 4px solid #fff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        }

        .testi-meta h4 {
            color: #1e293b;
            font-size: 19px;
            font-weight: 800;
            margin: 0 0 4px 0;
            font-family: 'Sora', sans-serif;
        }

        .testi-meta p {
            color: #64748b;
            font-size: 14px;
            margin: 0;
            font-weight: 600;
        }

        .testi-rating {
            background: rgba(255, 138, 0, 0.05);
            padding: 8px 16px;
            border-radius: 50px;
            display: flex;
            gap: 4px;
            border: 1px solid rgba(255, 138, 0, 0.1);
        }

        .testi-rating svg {
            width: 16px;
            height: 16px;
            color: #ff8a00;
            fill: #ff8a00;
        }

        .testi-controls {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            position: relative;
            z-index: 20;
            user-select: none;
        }

        .testi-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background-color: #ffffff;
            background-image: url('../images/arrow.webp');
            background-size: 22px;
            background-repeat: no-repeat;
            background-position: center;
            border: 1px solid #f1f5f9;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Ambient Outer Pulse */
        .testi-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 50%;
            background: var(--primary-purple);
            opacity: 0;

            transition: all 0.5s ease;
            z-index: -1;
        }

        #testiPrev {
            transform: rotate(180deg);
        }



        .testi-btn:hover::before {
            opacity: 0.15;
            transform: scale(1.4);
            animation: pulse-button 2s infinite;
        }

        #testiPrev:hover {
            transform: translateY(-8px) scale(1.1) rotate(180deg);
        }

        @keyframes pulse-button {
            0% {
                transform: scale(1.2);
                opacity: 0.2;
            }

            100% {
                transform: scale(1.8);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .testi-card {
                width: 90%;
                padding: 40px 30px;
                min-height: 420px;
            }

            .testi-card.prev,
            .testi-card.next {
                opacity: 0;
                pointer-events: none;
            }

            .testi-text {
                font-size: 18px;
            }

            .testimonial-slider-container {
                height: 500px;
            }
        }

        /* ===== AI Industry Suite Section - Premium Redesign ===== */
        .ai-industry-suite {
            max-width: 1200px;
            margin: 100px auto;
            padding: 0 40px;
            display: flex;
            gap: 60px;
            align-items: center;
            font-family: 'Sora', sans-serif;
        }

        .ai-left-panel {
            flex: 0.8;
        }

        .ai-left-panel h2 {
            font-size: clamp(32px, 4vw, 42px);
            color: var(--dark-blue);
            margin-bottom: 25px;
            line-height: 1.2;
            font-weight: 800;
        }



        .ai-left-panel p {
            color: #64748b;
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        /* ===== Card Matrix Grid ===== */
        .ai-card-matrix {
            flex: 1.2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        /* ===== Premium Service Card ===== */
        .ai-service-card {
            background: #ffffff;
            padding: 30px 25px;
            border-radius: 24px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            border: 1px solid #f1f5f9;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            overflow: hidden;
        }

        .ai-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            l0eft: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(113, 67, 254, 0.05) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .ai-service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(113, 67, 254, 0.2);
            box-shadow: 0 20px 40px rgba(113, 67, 254, 0.08);
        }

        .ai-service-card:hover::before {
            opacity: 1;
        }

        /* ===== Icon Badge Upgrade ===== */
        .ai-icon-badge {
            position: relative;
            z-index: 1;
            font-size: 32px;
            background: linear-gradient(135deg, rgba(113, 67, 254, 0.1) 0%, rgba(113, 67, 254, 0.02) 100%);
            color: var(--primary-purple);
            width: 65px;
            height: 65px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 18px;
            transition: all 0.4s ease;
        }

        .ai-service-card:hover .ai-icon-badge {
            background: var(--primary-purple);
            color: #fff;
            transform: scale(1.1) rotate(5deg);
        }

        /* ===== Card Content ===== */
        .ai-card-content {
            position: relative;
            z-index: 1;
        }

        .ai-card-content h4 {
            margin: 0 0 10px 0;
            font-size: 19px;
            color: var(--dark-blue);
            font-weight: 700;
        }

        .ai-card-content p {
            margin: 0;
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
        }

        /* ===== Responsive Design ===== */
        @media (max-width: 991px) {
            .ai-industry-suite {
                flex-direction: column;
                margin: 60px auto;
                text-align: center;
            }

            .ai-left-panel,
            .ai-card-matrix {
                width: 100%;
            }

            .ai-service-card {
                align-items: center;
                text-align: center;
            }

            .ai-icon-badge {
                margin: 0 auto;
            }
        }

        @media (max-width: 640px) {
            .ai-card-matrix {
                grid-template-columns: 1fr;
            }

            .ai-industry-suite {
                padding: 0 25px;
            }
        }

        /* AI Use Cases Redesign */
        .use-cases-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            width: 100%;
        }

        .use-case-card {
            background: #ffffff;
            border-radius: 30px;
            padding: 45px 35px;
            border: 1px solid #f1f5f9;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            overflow: hidden;
        }

        .use-case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .use-case-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(113, 67, 254, 0.1);
            border-color: rgba(113, 67, 254, 0.1);
        }

        .use-case-card:hover::before {
            transform: scaleX(1);
        }

        .use-case-icon-box {
            width: 70px;
            height: 70px;
            background: rgba(113, 67, 254, 0.05);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            transition: all 0.4s ease;
        }

        .use-case-card:hover .use-case-icon-box {
            background: var(--primary-purple);
            color: #ffffff;
            transform: rotate(15deg);
        }

        .use-case-icon-box svg {
            width: 35px;
            height: 35px;
        }

        .use-case-content h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .use-case-card:hover .use-case-content h3 {
            color: var(--primary-purple);
        }

        .use-case-content p {
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
            margin: 0;
        }

        .use-case-number {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 60px;
            font-weight: 900;
            color: rgba(113, 67, 254, 0.03);
            transition: all 0.4s ease;
            line-height: 1;
        }

        .use-case-card:hover .use-case-number {
            color: rgba(113, 67, 254, 0.08);
            transform: translateY(-10px);
        }

        /* Responsive Fixes for New Sections */
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            /* Benefits Mobile */
            .benefits-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .benefit-card {
                padding: 30px 25px;
            }

            .benefit-link {
                opacity: 1;
                transform: translateX(0);
            }

            /* Use Cases Mobile */
            .use-cases-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .use-case-card {
                padding: 35px 25px;
                align-items: center;
                text-align: center;
            }

            .use-case-number {
                font-size: 40px;
                top: 20px;
                right: 20px;
                opacity: 0.05;
            }

            .section-header h2 {
                font-size: 32px;
            }
        }

        @media (max-width: 480px) {
            .container-box {
                padding: 0 20px;
            }

            .benefit-icon-wrapper,
            .use-case-icon-box {
                width: 50px;
                height: 50px;
            }

            .benefit-icon-wrapper svg,
            .use-case-icon-box svg {
                width: 24px;
                height: 24px;
            }

            .benefit-info h3,
            .use-case-content h3 {
                font-size: 20px;
            }
        }

        /* Ultra-Clean Light 3D Tech Carousel */
        .tech-carousel-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
            background: transparent;
            perspective: 2000px;
            padding: 60px 0;
            margin: -30px 0;
        }

        .tech-tools-section {
            position: relative;
            background-color: #ffffff;
            background-image:
                linear-gradient(rgba(113, 67, 254, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(113, 67, 254, 0.05) 1px, transparent 1px);
            background-size: 60px 60px;
            overflow: hidden;
        }

        .tech-tools-section::before,
        .tech-tools-section::after {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 120px;
            z-index: 10;
            pointer-events: none;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .tech-tools-section::before {
            top: 0;
            background: linear-gradient(to bottom, #ffffff 30%, rgba(255, 255, 255, 0));
        }

        .tech-tools-section::after {
            bottom: 0;
            background: linear-gradient(to top, #ffffff 30%, rgba(255, 255, 255, 0));
        }

        .tech-tools-section .container-box {
            position: relative;
            z-index: 20;
        }

        .tech-tools-section .tech-carousel-wrapper {
            z-index: 15;
        }

        .tech-carousel-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 5;
            background: linear-gradient(90deg, #ffffff 0%, transparent 15%, transparent 85%, #ffffff 100%);
        }

        .tech-track {
            display: flex;
            width: calc(240px * 12);
            animation: scroll-tech-light 35s linear infinite;
            gap: 40px;
            transform-style: preserve-3d;
        }

        @keyframes scroll-tech-light {
            0% {
                transform: translate3d(0, 0, 0) rotateX(8deg);
            }

            100% {
                transform: translate3d(calc(-240px * 6), 0, 0) rotateX(8deg);
            }
        }

        .tech-slide {
            width: 200px;
            height: 160px;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid #f1f5f9;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            transform-style: preserve-3d;
            animation: float-card-light 6s ease-in-out infinite;
        }

        .tech-slide:nth-child(even) {
            animation-delay: -3s;
        }

        @keyframes float-card-light {

            0%,
            100% {
                transform: translateY(0) rotateY(-3deg) rotateX(2deg);
            }

            50% {
                transform: translateY(-15px) rotateY(3deg) rotateX(-2deg);
            }
        }

        .tech-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tech-slide:hover {
            background: #ffffff;
            transform: scale(1.1) translateZ(50px) !important;
            box-shadow: 0 40px 80px rgba(113, 67, 254, 0.15);
            z-index: 100;
        }

        .tech-slide:hover::before {
            opacity: 0.6;
        }

        .tech-slide img {
            height: 40px;
            width: auto;
            object-fit: contain;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
            transition: all 0.5s ease;
        }

        .tech-slide:hover img {
            transform: translateZ(20px) scale(1.1);
        }

        .tech-slide h3 {
            font-size: 16px;
            font-weight: 800;
            color: var(--dark-blue);
            margin: 0;
        }

        .tech-slide p {
            font-size: 11px;
            color: #64748b;
            margin: 0;
            text-align: center;
            padding: 0 15px;
            line-height: 1.3;
        }

        @media (max-width: 768px) {
            .tech-track {
                width: calc(190px * 12);
                gap: 30px;
            }

            .tech-slide {
                width: 160px;
                height: 120px;
            }

            @keyframes scroll-tech-light {
                0% {
                    transform: translate3d(0, 0, 0);
                }

                100% {
                    transform: translate3d(calc(-190px * 6), 0, 0);
                }
            }
        }

        /* Engagement Models Redesign */
        .engagement-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .engagement-card {
            background: #ffffff;
            border-radius: 25px;
            padding: 40px 30px;
            border: 1px solid #f1f5f9;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: flex;
            flex-direction: column;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        }

        .engagement-card.popular {
            border: 2px solid var(--primary-purple);
            transform: scale(1.05);
            z-index: 2;
        }

        .popular-badge {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--primary-purple), var(--primary-orange));
            color: #ffffff;
            padding: 8px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
            box-shadow: 0 10px 20px rgba(113, 67, 254, 0.3);
        }

        .engagement-header {
            margin-bottom: 20px;
        }

        .engagement-header h3 {
            font-size: 26px;
            font-weight: 800;
            color: var(--dark-blue);
            margin-bottom: 5px;
        }

        .engagement-subtitle {
            font-size: 14px;
            color: var(--primary-purple);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .engagement-desc {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .engagement-features {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
            flex-grow: 1;
        }

        .engagement-features li {
            font-size: 14px;
            color: #1e293b;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .engagement-features li i {
            color: #10b981;
            font-size: 14px;
        }

        .ideal-for {
            background: #f8fafc;
            padding: 12px 18px;
            border-radius: 12px;
            margin-bottom: 25px;
        }

        .ideal-for h4 {
            font-size: 13px;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 5px;
        }

        .ideal-for p {
            font-size: 14px;
            color: var(--dark-blue);
            font-weight: 600;
            margin: 0;
        }

        .engagement-btn {
            width: 100%;
            padding: 15px;
            border-radius: 10px;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .engagement-btn i {
            color: var(--primary-purple);
            transition: transform 0.3s ease;
        }

        .btn-filled i {
            color: #ffffff;
        }

        .engagement-btn:hover i {
            transform: translateX(5px);
        }

        .btn-outline {
            border: 2px solid #e2e8f0;
            color: var(--dark-blue);
        }

        .btn-filled {
            background: var(--primary-purple);
            color: #ffffff;
            box-shadow: 0 10px 20px rgba(113, 67, 254, 0.2);
        }

        .engagement-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 80px rgba(113, 67, 254, 0.12);
        }

        .engagement-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        @media (max-width: 1024px) {
            .engagement-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .engagement-card.popular {
                transform: scale(1);
            }

            .engagement-card.popular:hover {
                transform: translateY(-10px);
            }
        }




        /* Retail-Scrape Style Why Choose Us */
        .why-choose-retail {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .why-choose-retail .choose-left {
            position: relative;
        }

        .circular-img-wrapper {
            position: relative;
            width: 100%;
            max-width: 400px;
            aspect-ratio: 1;
            border-radius: 50%;
            overflow: hidden;
            border: 10px solid #ffffff;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }

        .circular-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .floating-play-btn {
            position: absolute;
            bottom: 40px;
            right: 90px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 24px;
            box-shadow: 0 10px 25px rgba(113, 67, 254, 0.4);
            cursor: pointer;
            z-index: 10;
            animation: pulse-purple 2s infinite;
        }

        @keyframes pulse-purple {
            0% {
                box-shadow: 0 0 0 0 rgba(113, 67, 254, 0.7);
            }

            70% {
                box-shadow: 0 0 0 20px rgba(113, 67, 254, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(113, 67, 254, 0);
            }
        }

        .why-choose-retail .choose-right {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px 30px;
            padding-top: 20px;
        }

        .guarantee-box {
            background: #ffffff;
            padding: 45px 25px 25px 25px;
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
            border: 1px solid #f1f5f9;
        }

        .guarantee-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(113, 67, 254, 0.1);
            border-color: var(--primary-purple);
        }

        .semicircle-icon {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 30px;
            background: rgba(113, 67, 254, 0.1);
            /* Soft purple tint */
            border-radius: 0 0 60px 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-purple);
            font-weight: bold;
            font-size: 14px;
        }

        .guarantee-box h3 {
            font-size: 18px;
            font-weight: 800;
            color: #1e293b;
            margin-bottom: 12px;
            text-align: center;
        }

        .guarantee-box p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
            text-align: center;
        }

        @media (max-width: 991px) {
            .why-choose-retail {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .why-choose-retail .choose-right {
                grid-template-columns: 1fr;
            }
        }

        .minimal-services-list {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .minimal-service-row {
            display: flex;
            align-items: center;
            padding: 40px 20px;
            border-bottom: 1px solid #f1f5f9;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            gap: 40px;
        }

        .minimal-service-row:last-child {
            border-bottom: none;
        }

        .minimal-service-row:hover {
            background: #fbfbfb;
            padding-left: 40px;
            padding-right: 0px;
        }

        .minimal-service-row::after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary-purple);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .minimal-service-row:hover::after {
            transform: scaleY(1);
        }

        .service-row-icon {
            font-size: 32px;
            color: #64748b;
            width: 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .minimal-service-row:hover .service-row-icon {
            color: var(--primary-purple);
            transform: scale(1.2);
        }

        .service-row-content {
            flex: 1;
        }

        .service-row-content h3 {
            font-size: 22px;
            color: var(--dark-blue);
            margin-bottom: 8px;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .minimal-service-row:hover .service-row-content h3 {
            color: var(--primary-purple);
        }

        .service-row-content p {
            font-size: 15px;
            color: #64748b;
            margin: 0;
            line-height: 1.6;
        }

        .service-row-arrow {
            font-size: 18px;
            color: #e2e8f0;
            transition: all 0.3s ease;
        }

        .minimal-service-row:hover .service-row-arrow {
            color: var(--primary-purple);
            transform: translateX(10px);
        }

        @media (max-width: 768px) {
            .minimal-service-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
                padding: 30px 10px;
            }

            .minimal-service-row:hover {
                padding-left: 20px;
            }

            .service-row-arrow {
                display: none;
            }
        }

        /* ==========================================================================
           MODERN MOBILE RESPONSIVE FIXES
           ========================================================================== */
        @media (max-width: 768px) {

            /* Basic Container Control */
            .container-box {
                padding: 0 20px !important;
            }

            .section-padding {
                padding: 30px 0 !important;
            }

            .section-header {
                text-align: center;
                margin-bottom: 40px !important;
            }

            .section-header h2 {
                font-size: 21px !important;
                line-height: 1.25 !important;
            }

            .section-header p {
                font-size: 15px !important;
                padding: 0 10px;
            }

            /* AI Hero Revamp */
            .ai-hero {
                padding: 100px 0 30px !important;
            }

            .ai-hero-inner {
                gap: 30px !important;
                padding: 0 15px !important;
            }

            .ai-hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .ai-hero-content h1 {
                font-size: 28px !important;
                line-height: 1.3 !important;
                margin-bottom: 20px !important;
            }

            .ai-hero-content p {
                font-size: 14px !important;
                margin-bottom: 25px !important;
                padding: 0 !important;
            }

            .product-hero-btns {
                justify-content: center !important;
            }

            .ai-hero-image img {
                width: 100% !important;
                max-width: 300px !important;
                margin: 0 auto;
                border-radius: 20px !important;
            }

            /* Split Sections Stacking */
            .split-section {
                gap: 30px !important;
                margin-bottom: 60px !important;
                text-align: center !important;
            }

            .split-content h2 {
                font-size: 26px !important;
            }

            .split-image img {
                width: 100% !important;
                max-width: 380px !important;
                border-radius: 20px !important;
            }

            /* Why Choose Us Circular Image */
            .why-choose-retail {
                gap: 40px !important;
            }

            .circular-img-wrapper {
                width: 260px !important;
                height: 260px !important;
                margin: 20px auto !important;
            }

            .guarantee-box {
                padding: 25px 20px !important;
                text-align: center;
            }

            .semicircle-icon {
                margin: 0 auto 15px !important;
            }

            /* Use Cases Grid */
            .use-cases-container {
                gap: 20px !important;
            }

            /* Technologies & Tools Margin Fix */
            .tech-tools-section .section-header {
                margin-bottom: 20px !important;
            }

            /* Testimonial Fix for Small Screens */
            .testimonial-section {
                padding: 40px 0 !important;
            }

            .testimonial-slider-container {
                height: 400px !important;
            }

            .testi-card {
                width: 92% !important;
                left: 0 !important;
                right: 0 !important;
                margin: 0 auto !important;
                padding: 30px 20px !important;
                transform: scale(0.95) translateZ(0) !important;
                min-height: auto !important;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08) !important;
            }

            .testi-card::after {
                font-size: 40px !important;
                top: 15px !important;
                right: 15px !important;
            }

            .testi-text {
                font-size: 16px !important;
                margin-bottom: 20px !important;
                line-height: 1.5 !important;
            }

            .testi-card.active {
                opacity: 1 !important;
                transform: scale(1) translateZ(0) !important;
                z-index: 10 !important;
            }

            .testi-card.prev,
            .testi-card.next {
                opacity: 0 !important;
                pointer-events: none !important;
            }

            /* Engagement Models */
            .engagement-container {
                gap: 30px !important;
            }

            .engagement-card {
                padding: 40px 25px !important;
            }

            /* FAQ Grid */
            .faq-grid {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }

            .faq-question {
                font-size: 16px !important;
                padding: 18px 20px !important;
            }

            /* Process Timeline Mobile Animation */
            .timeline-step {
                opacity: 0;
                transform: translateY(40px);
                transition: opacity 0.6s ease-out, transform 0.6s ease-out;
            }

            .timeline-step.show-step {
                opacity: 1;
                transform: translateY(0);
            }

        }

