/* Testimonials Section Styles */
        
        
        /* Testimonials Section */
        .testimonials-section {
            position: relative;
            background: linear-gradient(180deg, #ffffff 0%, rgba(1, 87, 255, 0.03) 100%);
        }
        
        .testimonials-container {
            position: relative;
            z-index: 1;
        }
        
        .testimonials-wrapper {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            overflow-x: auto;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE and Edge */
            padding: 20px 10px;
            scroll-behavior: smooth;
            position: relative;
            scroll-snap-type: x mandatory;
        }
        
        .testimonials-wrapper::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .testimonial-card {
            flex: 0 0 350px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid var(--neutral-200);
            scroll-snap-align: start;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }
        
        .testimonial-quote {
            font-size: 18px;
            color: var(--neutral-700);
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-quote::before {
            content: "";
            font-size: 80px;
            font-family: Georgia, serif;
            color: rgba(1, 87, 255, 0.1);
            position: absolute;
            top: -40px;
            left: -20px;
            z-index: -1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid var(--neutral-200);
            padding-top: 20px;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid white;
            box-shadow: 0 0 0 2px var(--primary-blue);
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info {
            flex-grow: 1;
        }
        
        .author-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--neutral-800);
            margin-bottom: 4px;
        }
        
        .author-title {
            font-size: 14px;
            color: var(--neutral-600);
        }
        
        .company-logo {
            width: 80px;
            height: 30px;
            display: flex;
            align-items: center;
        }
        
        .company-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .testimonial-rating {
            display: flex;
            gap: 2px;
            margin-top: 10px;
        }
        
        .star {
            color: #f59e0b;
            font-size: 14px;
        }
        
        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 1px solid var(--neutral-200);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        
        .nav-btn:hover {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }
        
        .nav-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
            position: relative;
        }
        
        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--neutral-300);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: var(--primary-blue);
            transform: scale(1.2);
        }
        
        .dot.active::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            border-radius: 50%;
            border: 2px solid var(--primary-blue);
            opacity: 0;
            animation: pulse-dot 1.5s infinite;
        }
        
        @keyframes pulse-dot {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.8);
            }
            50% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1.2);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.6);
            }
        }
        
        .dot:hover {
            background: var(--primary-blue);
            transform: scale(1.2);
        }
        
        /* CTA Section */
        .cta-section {
            position: relative;
            background: linear-gradient(135deg, #0157ff, #ff113b);
            color: white;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='white' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.6;
            z-index: 0;
        }
        
        .cta-container {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 50px;
        }
        
        .cta-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            height: 400px;
        }
        
        .cta-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .cta-image:hover img {
            transform: scale(1.05);
        }
        
        .cta-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .cta-title {
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.2;
        }
        
        .cta-description {
            font-size: 18px;
            margin-bottom: 30px;
            line-height: 1.7;
            opacity: 0.9;
        }
        
        .cta-features {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .cta-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .cta-feature-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        
        .cta-feature-text {
            font-size: 16px;
            font-weight: 500;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }
        
        .cta-btn {
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
        }
        
        .cta-btn-primary {
            background: white;
            color: var(--primary-blue);
            border: none;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .cta-btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        }
        
        .cta-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }
        
        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(70px);
            opacity: 0.3;
            z-index: 0;
        }
        
        .shape-1 {
            background: var(--primary-blue);
            width: 300px;
            height: 300px;
            top: 10%;
            right: -150px;
        }
        
        .shape-2 {
            background: var(--primary-red);
            width: 400px;
            height: 400px;
            bottom: 10%;
            left: -200px;
        }
        
        /* Animation keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .cta-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-title {
                font-size: 38px;
            }
            
            .cta-title {
                font-size: 34px;
            }
            
            .cta-image {
                height: 350px;
                order: 1;
            }
            
            .cta-content {
                order: 2;
            }
        }
        
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 34px;
            }
            
            .section-subtitle {
                font-size: 16px;
            }
            
            .testimonial-card {
                flex: 0 0 300px;
                padding: 25px;
            }
            
            .testimonial-quote {
                font-size: 16px;
            }
            
            .cta-title {
                font-size: 30px;
            }
            
            .cta-description {
                font-size: 16px;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .cta-btn {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }
            
            .testimonial-card {
                flex: 0 0 280px;
                padding: 20px;
            }
            
            .author-image {
                width: 40px;
                height: 40px;
            }
            
            .author-name {
                font-size: 15px;
            }
            
            .cta-feature {
                align-items: flex-start;
            }
            
            .cta-feature-icon {
                margin-top: 3px;
            }
        }
