 
        /* Custom Animation Classes */
        .hover-zoom {
            transition: transform 0.3s ease;
        }
        .hover-zoom:hover {
            transform: scale(1.05);
        }
        .tech-logo {
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.8;
        }
        .tech-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: translateY(-5px);
        }
        .pulse-effect {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        /* FULL SCREEN TESTIMONIAL SECTION */
        .fullscreen-testimonials {
            position: relative;
            width: 100vw;
            margin-left: calc(-50vw + 50%);
            padding: 80px 0;
            /* background: linear-gradient(135deg, #6eca6e 0%, #3CB043 100%); */
            overflow: hidden;
            
        }
        
        .fullscreen-testimonials:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* background: url('https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80') center/cover; */
            opacity: 0.1;
        }
        
        .fullscreen-testimonials .container {
            position: relative;
            z-index: 2;
        }
        
        .fullscreen-testimonials .testimonial-slider .swiper-slide {
            height: auto;
            padding: 20px;
        }
        
        .fullscreen-testimonials .testimonial-card {
            background:  linear-gradient(135deg, #1c1c1e 0%, #2d2d30 100%);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px 35px;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
        
        .fullscreen-testimonials .testimonial-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(0, 123, 255, 0.3);
            box-shadow: 0 30px 60px rgba(0, 123, 255, 0.2);
        }
        
        .fullscreen-testimonials .testimonial-card_text {
            font-size: 18px;
            line-height: 1.8;
            color: #e0e0e0;
            margin-bottom: 30px;
            font-style: normal;
            position: relative;
            padding-left: 30px;
        }
        
        .fullscreen-testimonials .testimonial-card_text:before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 60px;
            color: rgba(0, 123, 255, 0.3);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .fullscreen-testimonials .testimonial-card_profile {
            display: flex;
            align-items: center;
            gap: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .fullscreen-testimonials .testimonial-card_avater img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 3px solid #007bff;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .fullscreen-testimonials .testimonial-card:hover .testimonial-card_avater img {
            transform: rotate(360deg);
            transition: transform 1s ease;
        }
        
        .fullscreen-testimonials .testimonial-card_name {
            font-weight: 700;
            margin: 0 0 5px 0;
            font-size: 18px;
            color: #fff;
            letter-spacing: 0.5px;
        }
        
        .fullscreen-testimonials .testimonial-card_desig {
            font-size: 14px;
            color: #aaa;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        
        .fullscreen-testimonials .testimonial-card_rating i {
            color: #ffd700;
            font-size: 16px;
            margin-right: 3px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .fullscreen-testimonials .comp-badge {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
            box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
        }
        
        .fullscreen-testimonials .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .fullscreen-testimonials .section-title h2 {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff, #a8d0ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .fullscreen-testimonials .section-title p {
            color: #aaa;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .fullscreen-testimonials .swiper-pagination {
            position: relative;
            margin-top: 50px;
        }
        
        .fullscreen-testimonials .swiper-pagination-bullet {
            background: #666;
            opacity: 1;
            width: 12px;
            height: 12px;
            transition: all 0.3s ease;
        }
        
        .fullscreen-testimonials .swiper-pagination-bullet-active {
            background: #007bff;
            transform: scale(1.5);
            box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
        }
        
        @media (max-width: 768px) {
            .fullscreen-testimonials {
                padding: 50px 0;
            }
            
            .fullscreen-testimonials .section-title h2 {
                font-size: 2rem;
            }
            
            .fullscreen-testimonials .testimonial-card {
                padding: 30px 20px;
            }
            
            .fullscreen-testimonials .testimonial-card_text {
                font-size: 16px;
                padding-left: 20px;
            }
        }