      :root {
            --primary-orange: #F8821D;
            --primary-orange-light: #FF8B5C;
            --primary-orange-dark: #E55A2B;
            --secondary-gray: #2D3748;
            --light-gray: #F7FAFC;
        }
        
        .text-color-primary {
            color: var(--primary-orange) !important;
        }
        
        /* Testimonial Section - One by One Layout */
        .testimonial-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
        }
        
        .testimonial-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--primary-orange), var(--primary-orange-light));
        }
        
        /* Testimonial Item Styling */
        .testimonial-item {
            background: white;
            border-radius: 12px;
            padding: 40px;
            margin-bottom: 30px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border-left: 5px solid var(--primary-orange);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(255,107,53,0.15);
            border-left-color: var(--primary-orange-dark);
        }
        
        .testimonial-item:before {
            content: '';
            position: absolute;
            right: -50px;
            top: -50px;
            width: 100px;
            height: 100px;
            background: var(--primary-orange);
            opacity: 0.05;
            border-radius: 50%;
        }
        
        .testimonial-item:after {
            content: '';
            position: absolute;
            right: 40px;
            top: 40px;
            width: 40px;
            height: 40px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF6B35" opacity="0.2"><path d="M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
        }
        
        .testimonial-icon {
            color: var(--primary-orange);
            font-size: 24px;
            margin-bottom: 20px;
            opacity: 0.7;
        }
        
        .testimonial-content {
            font-size: 18px;
            line-height: 1.7;
            color: var(--secondary-gray);
            margin-bottom: 0;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-content p {
            margin: 0;
        }
        
        /* Number Indicator */
        .testimonial-number {
            position: absolute;
            left: 22px;
            top: 20px;
            background: var(--primary-orange);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(255,107,53,0.3);
            z-index: 2;
        }
        
        /* Section Header */
        .section-title-wrap.text-center .heading {
            color: var(--secondary-gray);
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title-wrap.text-center .heading:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-orange);
            border-radius: 2px;
        }
        
        .section-title-wrap.text-center .sub-heading {
            color: #666;
            font-size: 18px;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Section */
        .infotechno-contact-us-bg {
            background: linear-gradient(135deg, #fef7f4 0%, #ffffff 100%);
            border-top: 1px solid rgba(255,107,53,0.1);
        }
        
        .contact-info-one {
            background: white;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }
        
        .contact-info-one:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, var(--primary-orange), var(--primary-orange-light));
        }
        
        .contact-info-one .icon {
            background: var(--primary-orange);
            color: white;
            width: 80px;
            height: 80px;
            line-height: 80px;
            border-radius: 50%;
            margin: 0 auto 25px;
            font-size: 30px;
            transition: transform 0.3s ease;
        }
        
        .contact-info-one:hover .icon {
            transform: rotate(15deg) scale(1.1);
        }
        
        .contact-info-one .heading {
            color: var(--secondary-gray);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .contact-info-one .call-us {
            margin: 20px 0;
        }
        
        .contact-info-one .call-us a {
            color: var(--primary-orange);
            text-decoration: none;
            font-size: 32px;
            font-weight: 700;
            transition: color 0.3s ease;
        }
        
        .contact-info-one .call-us a:hover {
            color: var(--primary-orange-dark);
        }
        
        .btn--secondary {
            background: transparent;
            border: 2px solid var(--primary-orange);
            color: var(--primary-orange);
            font-weight: 600;
           
            border-radius: 6px;
            transition: all 0.3s ease;
            display: inline-block;
            text-decoration: none;
        }
        
        .btn--secondary:hover {
            background: var(--primary-orange);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255,107,53,0.3);
        }
        
    
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .testimonial-item {
            animation: fadeInUp 0.6s ease-out forwards;
        }
        
        .testimonial-item:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-item:nth-child(2) { animation-delay: 0.2s; }
        .testimonial-item:nth-child(3) { animation-delay: 0.3s; }
        .testimonial-item:nth-child(4) { animation-delay: 0.4s; }
        
        /* Responsive */
        @media (max-width: 768px) {
            .testimonial-section {
                padding: 60px 0;
            }
            
            .testimonial-item {
                padding: 30px 25px 30px 35px;
            }
            
            .testimonial-number {
                left: -15px;
                top: 15px;
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .testimonial-content {
                font-size: 16px;
            }
            
            .contact-info-one {
                padding: 30px;
                margin-top: 30px;
            }
            
            .contact-info-one .call-us a {
                font-size: 24px;
            }
            
            .breadcrumb-area {
                padding: 50px 0;
            }
        }
        
        @media (max-width: 576px) {
            .testimonial-item {
                padding: 25px 20px 25px 30px;
                margin-bottom: 25px;
            }
            
            .testimonial-number {
                position: relative;
                left: 0;
                top: 0;
                width: 40px;
                height: 40px;
                margin-bottom: 15px;
                display: inline-flex;
            }
            
            .testimonial-icon {
                display: none;
            }
            
            .testimonial-item:after {
                right: 20px;
                top: 20px;
                width: 30px;
                height: 30px;
            }
        }