:root {
            --primary: #42424c;
            --secondary: #2a2a3c;
            --accent: #3699ff;
            --accent-light: #80bdff;
            --accent-dark: #187de4;
            --success: #1adc79;
            --success-dark: #12a359;
            --warning: #ffa800;
            --danger: #f64e60;
            --light: #f8f9fa;
            --gray: #e4e6ef;
            --dark: #181c32;
            --border-radius: 8px;
            --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f5f8fa;
            color: #5e6278;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            color: var(--dark);
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: transparent;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 10px 0;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: flex-start !important; /* Change from space-between to flex-start */
        }


        .logo {
            display: flex;
            align-items: center;
            margin-right: auto; /* Pushes everything else to the right */
        }

        .logo img {
            height: 40px;
            transition: var(--transition);
        }

        .mobile-menu {
            display: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 1100;
        }

        nav {
            transition: var(--transition);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }

        nav ul li a:hover,
        nav ul li a:focus {
            color: white;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .login-btn {
            background: var(--accent);
            color: white;
            padding: 8px 20px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid var(--accent);
        }

        .login-btn:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }
        
        @media (max-width: 768px) {
          .login-btn {
                display: none;
              }
            }
        
        /* Mobile login button styles */
        .mobile-login-btn-container {
            width: 100%;
            max-width: 500px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .mobile-login-btn {
            display: inline-block;
            background: var(--success);
            color: white;
            padding: 12px 30px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid var(--success);
            width: 100%;
            max-width: 200px;
            text-align: center;
        }
        
        .mobile-login-btn:hover {
            background: var(--success-dark);
            transform: translateY(-2px);
        }
        

        /* Banner Section - Enhanced upside curve */
        .banner {
            padding: 150px 0 150px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            position: relative;
            overflow: hidden;
            color: white;
            margin-top: 0;
            clip-path: ellipse(100% 85% at 50% 15%);
        }

        .banner::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(54, 153, 255, 0.1) 0%, rgba(27, 197, 189, 0.1) 100%);
            z-index: 0;
        }

        .banner-container {
            display: flex;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .banner-content {
            flex: 1;
            padding-right: 50px;
        }

        .banner-content h1 {
            font-size: 3.6rem;
            line-height: 1.2;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }

        .banner-content p {
            font-size: 1rem;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
        }

        .banner-buttons {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }

        .btn {
            padding: 14px 30px;
            border-radius: 8px;
            font-weight: 500;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .btn i {
            margin-right: 10px;
        }

        .btn-primary {
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            box-shadow: 0 4px 15px rgba(54, 153, 255, 0.3);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(54, 153, 255, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }

        .banner-image {
            flex: 1;
            overflow: hidden;
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }

        .banner-image:hover {
            transform: perspective(1000px) rotateY(0);
        }

        .banner-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        
        .highlight-supercharge {
            display: inline-block;
            position: relative;
            color: #1adc79;
            font-weight: bold;
        }
        
        .highlight-supercharge .text {
            position: relative;
            z-index: 1;
        }
        
        .highlight-supercharge .underline {
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 10px;
            z-index: 0;
            pointer-events: none;
        }


        /* Overlapping Card - Enhanced design */
        .overlap-card {
            position: relative;
            z-index: 2;
            margin-top: -80px;
            margin-bottom: 100px;
        }

        .overlap-card .container {
            display: flex;
            justify-content: center;
        }

        .card-content {
            background: white;
            padding: 40px 50px;
            border-radius: var(--border-radius);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            max-width: 900px;
            width: 100%;
            text-align: center;
            position: relative;
            border-top: 4px solid var(--accent);
            transform: translateY(-40px);
            animation: float 4s ease-in-out infinite;
        }

        .card-content h2 {
            margin-bottom: 20px;
            font-size: 2.5rem;
            color: var(--primary);
        }

        .card-content p {
            font-size: 1.2rem;
            color: #7e8299;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Specialties Section */
        .specialties {
            padding: 100px 0 80px;
            background: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 2.0rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #7e8299;
            margin-top: 20px;
        }

        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .specialty-item {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--gray);
            position: relative;
            overflow: hidden;
        }

        .specialty-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--accent-light);
        }

        .specialty-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition);
        }

        .specialty-item:hover::before {
            transform: scaleX(1);
        }

        .specialty-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(to right, rgba(54, 153, 255, 0.1), rgba(27, 197, 189, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
            color: var(--accent);
            transition: var(--transition);
        }

        .specialty-item:hover .specialty-icon {
            transform: scale(1.1);
        }

        .specialty-item h3 {
            margin-bottom: 20px;
            font-size: 1.4rem;
        }

        /* Products Section */
        .products {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f8fa 0%, #e1e8f0 100%);
        }

        .products-slider {
            position: relative;
            overflow: hidden;
        }

        .products-container {
            display: flex;
            transition: transform 0.5s ease;
            width: 300%; /* 3 slides */
        }

        .product-card {
            flex: 0 0 33.3333%; /* Each card takes 1/3 of container */
            padding: 0 15px;
            box-sizing: border-box;
        }

        .product-content {
            display: flex;
            background: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            height: 100%;
        }

        .product-img {
            flex: 1;
            overflow: hidden;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-info {
            flex: 1;
            padding: 30px;
        }

        .product-info h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .product-info p {
            margin-bottom: 25px;
            color: #7e8299;
        }

        .product-features {
            margin-bottom: 25px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .feature-item i {
            color: var(--success);
            margin-right: 10px;
        }

        .product-price {
            font-size: 1.8rem;
            font-weight: 500;
            color: var(--primary);
            margin-bottom: 25px;
        }

        .btn-product {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 10px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .btn-product:hover {
            background: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(54, 153, 255, 0.3);
        }
        
        .btn-product-green {
            display: inline-block;
            background: var(--success);
            color: white;
            padding: 10px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .btn-product-green:hover {
            background: var(--success-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(54, 153, 255, 0.3);
        }

        /* Slider navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 10px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d1d3e0;
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            border: 1px solid var(--gray);
            transition: var(--transition);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent-light);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .testimonial-header img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }

        .testimonial-header h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .testimonial-header p {
            color: var(--accent);
            font-size: 0.9rem;
        }

        .testimonial-content p {
            font-style: italic;
            color: #5e6278;
            position: relative;
            padding-left: 20px;
        }

        .testimonial-content p::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: rgba(54, 153, 255, 0.1);
            font-family: Georgia, serif;
        }

        /* Business Section */
        .business-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: white;
        }

        .business-container {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .business-content {
            flex: 1;
        }

        .business-content h2 {
            font-size: 2.5rem;
            color: white;
            margin-bottom: 20px;
        }

        .business-content p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .business-form {
            flex: 1;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            padding: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .business-form h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.5rem;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.8);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-family: inherit;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-light);
            background: rgba(255, 255, 255, 0.08);
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-submit {
            width: 100%;
            padding: 12px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }

        .form-submit:hover {
            background: var(--accent-dark);
            transform: translateY(-2px);
        }

        /* Footer */
        footer {
            background: var(--primary);
            color: rgba(255, 255, 255, 0.7);
            padding: 70px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--accent);
        }

        .footer-col p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-col ul li a i {
            margin-right: 10px;
            width: 20px;
            color: var(--accent);
        }

        .footer-col ul li a:hover {
            color: white;
            transform: translateX(5px);
        }

        .copyright {
            text-align: center;
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .copyright i {
            color: var(--danger);
        }

        /* Form message styling */
        .form-message {
            display: none;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            margin-top: 20px;
            text-align: center;
            color: white;
        }
        
        /* WhatsApp number styling */
        .whatsapp-container {
            display: flex;
        }
        
        .country-select {
            display: flex;
            align-items: center;
            width: 30%;
            margin-right: 10px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            padding: 0 10px;
        }
        
        .country-flag {
            margin-right: 8px;
            font-weight: bold;
        }
        
        .country-code {
            flex: 1;
            background: transparent;
            border: none;
            color: white;
            padding: 12px 0;
            font-size: 1rem;
        }
        
        .whatsapp-number {
            width: 70%;
        }

        /* Mobile Nav Overlay */
        .mobile-nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 1050;
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            overflow-y: auto;
        }
        
        .mobile-nav-overlay.active {
            display: flex;
        }
        
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            width: 100%;
            max-width: 500px;
            margin-bottom: 40px;
        }
        
        .mobile-logo {
            height: 40px;
        }
        
        .close-menu {
            font-size: 2rem;
            color: var(--primary);
            cursor: pointer;
        }
        
        .mobile-nav-links {
            width: 100%;
            max-width: 500px;
            margin-bottom: 40px;
        }
        
        .mobile-nav-links ul {
            list-style: none;
        }
        
        .mobile-nav-links ul li {
            margin: 15px 0;
            text-align: center;
        }
        
        .mobile-nav-links ul li a {
            color: var(--primary);
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            transition: var(--transition);
        }
        
        .mobile-nav-links ul li a:hover {
            color: var(--accent);
        }
        
        .mobile-contact-info {
            width: 100%;
            max-width: 500px;
            margin-bottom: 40px;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin: 15px 0;
            color: var(--primary);
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            margin-right: 15px;
            color: var(--accent);
            width: 30px;
        }
        
        .mobile-social-links {
            display: flex;
            gap: 20px;
        }
        
        .mobile-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
        }
        
        .mobile-social-links a:hover {
            background: var(--accent);
            transform: translateY(-5px);
        }
        
        .g-recaptcha {
            margin: 20px 0;
            display: flex;
            justify-content: center;
        }
        
        /* YouTube showcase section */
        .video-showcase {
            padding: 80px 0;
            /*background: white;*/
        }
        
        .video-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .video-wrapper {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .video-content {
            flex: 1;
        }
        
        .video-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .video-content p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(-40px); }
            50% { transform: translateY(-50px); }
            100% { transform: translateY(-40px); }
        }
        
        /* Thank you message */
        .thank-you-message {
            display: none;
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .thank-you-message h3 {
            color: white;
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .thank-you-message p {
            font-size: 1.1rem;
            margin-bottom: 30px;
        }
        
        .thank-you-message .btn {
            display: inline-block;
            margin-top: 10px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .banner-container {
                flex-direction: column;
                text-align: center;
            }
            
            .banner-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .banner-buttons {
                justify-content: center;
            }
            
            .business-container {
                flex-direction: column;
            }
            
            .product-content {
                flex-direction: column;
            }
            
            .banner {
                clip-path: ellipse(120% 85% at 50% 15%);
            }
            
            /* Move banner image to top on mobile */
            .banner-image {
                order: -1;
                margin-bottom: 30px;
                max-width: 80%;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu {
                display: block;
            }
            
            nav {
                display: none;
            }
            
            .banner::after {
                height: 80px;
            }
            
            .overlap-card {
                margin-top: -50px;
                margin-bottom: 60px;
            }
            
            .card-content {
                padding: 30px;
            }
            
            .banner {
                clip-path: ellipse(140% 85% at 50% 15%);
                padding: 180px 0 120px;
            }
            
            .banner-content h1 {
                font-size: 2.5rem;
            }
            
            .video-container {
                flex-direction: column;
            }
        }

        @media (max-width: 576px) {
            .banner-content h1 {
                font-size: 2.2rem;
            }
            
            .banner-buttons {
                flex-direction: column;
            }
            
            .specialties-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .card-content h2 {
                font-size: 1.8rem;
            }
            
            .banner {
                clip-path: ellipse(160% 85% at 50% 15%);
                padding: 160px 0 100px;
            }
            
            .country-select {
                width: 35%;
            }
            
            .whatsapp-number {
                width: 65%;
            }
        }
        
        /* Custom styles for intl-tel-input */
        .iti {
            width: 100%;
        }
        
        .iti__flag-container {
            padding: 0 6px 0 8px;
        }
        
        .iti__selected-flag {
            background: transparent;
            border-right: 1px solid rgba(255,255,255,0.2);
        }
        
        .iti__arrow {
            border-top-color: rgba(255,255,255,0.5);
        }
        
        .iti__country-list {
            background: var(--secondary);
            border: 1px solid rgba(255,255,255,0.1);
            color: white;
        }
        
        .iti__divider {
            border-bottom-color: rgba(255,255,255,0.1);
        }
        
        .iti__country.iti__highlight {
            background-color: rgba(54, 153, 255, 0.2);
        }