 /* All existing CSS remains the same */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #fd7e14, #fdbb2d);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #fd7e14, #fdbb2d);
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(253, 126, 20, 0.3);
        }
        
        .animate-pulse-slow {
            animation: pulse 4s ease-in-out infinite;
        }
        
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        
        .animate-float-delayed {
            animation: float 7s ease-in-out infinite 1s;
        }
        
        .animate-float-slow {
            animation: float 8s ease-in-out infinite 2s;
        }
        
        .animate-bounce-slow {
            animation: bounce 3s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.5; }
            100% { transform: scale(1); opacity: 0.3; }
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        /* Shopping Banner Styles */
        .shopping-banner {
            background: linear-gradient(135deg, #1a2a6c, #2a1f5c, #fdbb2d);
            position: relative;
            overflow: hidden;
        }
        
        .floating-element {
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }
        
        .floating-element:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            top: 20%;
            right: 15%;
            width: 120px;
            height: 120px;
            animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            bottom: 15%;
            left: 15%;
            width: 60px;
            height: 60px;
            animation-delay: 4s;
        }
        
        .floating-element:nth-child(4) {
            bottom: 10%;
            right: 10%;
            width: 100px;
            height: 100px;
            animation-delay: 6s;
        }
        
        .text-reveal {
            opacity: 0;
            animation: textReveal 1s ease forwards;
        }
        
        @keyframes textReveal {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .delay-200 {
            animation-delay: 0.2s;
        }
        
        .delay-400 {
            animation-delay: 0.4s;
        }
        
        .delay-500 {
            animation-delay: 0.5s;
        }
        
        .btn-pulse {
            animation: pulse 2s infinite;
        }
        
        .vector-container {
            position: relative;
        }
        
        .vector-talk {
            position: absolute;
            top: -40px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 10px 20px;
            border-radius: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: talkPulse 3s infinite;
        }
        
        .vector-talk:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-top: 10px solid white;
        }
        
        @keyframes talkPulse {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
        }
        
        .vector-image {
            animation: float 6s ease-in-out infinite;
        }
        
        /* Background Elements */
        .gradient-circle {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.3;
            z-index: 0;
        }
        
        .floating-icon {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.7);
            z-index: 1;
        }
        
        .animate-rotate {
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* Review Cards */
        .review-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(253, 126, 20, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .review-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(253, 126, 20, 0.05), transparent);
            transition: left 0.6s ease;
        }
        
        .review-card:hover::before {
            left: 100%;
        }
        
        .review-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(253, 126, 20, 0.15);
            border-color: rgba(253, 126, 20, 0.3);
        }
        
        /* Star Rating */
        .star-rating {
            color: #fd7e14;
        }
        
        .star-empty {
            color: #e2e8f0;
        }
        
        /* Customer Image */
        .customer-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fd7e14;
            transition: all 0.3s ease;
        }
        
        .review-card:hover .customer-image {
            transform: scale(1.1);
            border-color: #fdbb2d;
        }
        
        /* Review Stats */
        .stat-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(253, 126, 20, 0.1);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(253, 126, 20, 0.1);
        }
        
        /* Progress Bar */
        .progress-bar {
            background: #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
            height: 8px;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(135deg, #fd7e14, #fdbb2d);
            border-radius: 10px;
            transition: width 1s ease-in-out;
        }
        
        /* Quote Icon */
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: rgba(253, 126, 20, 0.1);
            transition: all 0.3s ease;
        }
        
        .review-card:hover .quote-icon {
            color: rgba(253, 126, 20, 0.2);
            transform: scale(1.1);
        }
        
        /* Review Image Gallery */
        .review-image {
            border-radius: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .review-image:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Section Backgrounds */
        .section-bg {
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
        }
        
        /* Animation for stats */
        @keyframes countUp {
            from { transform: translateY(20px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        
        .count-animation {
            animation: countUp 1s ease-out forwards;
        }
        
        /* NEW MOBILE STYLING FIXES */
        
        /* Customer Satisfaction Section - Mobile Grid */
        @media (max-width: 768px) {
            .stat-card {
                margin-bottom: 1rem;
                width: 100%;
            }
            
            .rating-distribution {
                width: 100%;
                margin-top: 2rem;
            }
        }
        
        /* Carousel Styles */
        .carousel-container {
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        
        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .carousel-slide {
            min-width: 100%;
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(253, 126, 20, 0.8);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .carousel-nav:hover {
            background: rgba(253, 126, 20, 1);
            transform: translateY(-50%) scale(1.1);
        }
        
        .carousel-prev {
            left: 10px;
        }
        
        .carousel-next {
            right: 10px;
        }
        
        .carousel-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #e2e8f0;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carousel-dot.active {
            background: #fd7e14;
            transform: scale(1.2);
        }
        
        /* Hide carousel navigation on desktop */
        @media (min-width: 769px) {
            .carousel-nav, .carousel-dots {
                display: none;
            }
            
            .carousel-track {
                transform: none !important;
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 2rem;
            }
            
            .carousel-slide {
                min-width: auto;
                padding: 0;
            }
        }
        
        /* Mobile-specific styling for customer reviews */
        @media (max-width: 768px) {
            .carousel-slide .review-card {
                margin: 0 auto;
                max-width: 100%;
            }
        }