		

        

        #voice-button.recording {
            background: #dc3545;
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .typing {
            font-style: italic;
            color: gray;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .tooltip {
            position: relative;
            display: inline-block;
        }

        .tooltip .tooltip-text {
            visibility: hidden;
            width: max-content;
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 6px 8px;
            border-radius: 5px;
            position: absolute;
            bottom: 125%;
            right: 50%;
            transform: translateX(50%);
            opacity: 0;
            transition: opacity 0.3s;
            font-size: 14px;
            white-space: nowrap;
            z-index: 1;
        }

        .tooltip:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
        }

        .tooltip .tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            right: 50%;
            margin-right: -6px;
            border-width: 6px;
            border-style: solid;
            border-color: #333 transparent transparent transparent;
        }
		
		
		
		
		
		
		
		
		
		

        :root {
            --renesi-blue: #458DE2;
            --renesi-yellow: #EAC51D;
            --renesi-pink: #F95D79;
            --renesi-orange: #FFA500;
            --light-bg: #f8f9fa;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--light-bg);
            overflow-x: hidden;
			direction: rtl;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
        }
        
        .renesi-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        
        
        .chat-container, .form-container, .upload-container {
            width: 800px;
            max-width: 100%;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 30px auto;
			flex-direction: column;
        }
        
        .chat-header, .form-header {
            background: linear-gradient(90deg, var(--renesi-blue) 0%, var(--renesi-pink) 100%);
            color: white;
            padding: 15px 20px;
            font-weight: 600;
			border-radius: 15px 15px 0 0;
			display: flex;
			flex-direction: row;
			justify-content: space-between;
        }
        
        .chat-messages {
            padding: 20px;
            min-height: 500px;
			max-height: 600px;
            overflow-y: auto;
			border-radius: 0 0 15px 15px;
        }
		
		.upload-frame {
			min-height: 500px;
			max-height: 600px;
            overflow-y: auto;
			border-radius: 0 0 15px 15px;
		}
        
        .message {
            margin-bottom: 15px;
            padding: 10px 15px;
            border-radius: 10px;
            max-width: 80%;
            line-height: 1.4;
        }
		
		.message a {
			color: #0000ED;
			text-decoration: underline;
		}
        
        .bot-message {
            background-color: #f0f4f8;
            margin-right: auto;
            border-bottom-left-radius: 0;
        }
        
        .user-message {
            background-color: var(--renesi-blue);
            color: white;
            margin-left: auto;
            border-bottom-right-radius: 0;
        }
        
        .chat-input {
            display: flex;
            padding: 10px 20px;
            border-top: 1px solid #eee;
			flex-direction: row;
			gap: 5px;
        }
		
		.form-input {
            display: flex;
			flex-direction: column;
			gap: 3px;
            padding: 10px 20px;
            border-top: 1px solid #eee;
        }
        
        .chat-input textarea, .form-input input  {
            flex-grow: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            outline: none;
        }
		
		.chat-input textarea {
            field-sizing: content;
			resize: none;
			min-height: 60px;
        }
        
        .chat-header button {
			    border: 1px solid #fff;
				padding: 5px;
				line-height: 80%;
				border-radius: 5px;
		}
        .chat-input button, .form-input button {
            background-color: var(--renesi-blue);
            color: white;
            border: none;
            border-radius: 25px;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .chat-input button:hover, .form-input button:hover {
            background-color: #3a7ac9;
        }
        
        .particles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            border-radius: 50%;
            animation: particle-animation 15s infinite linear;
            opacity: 0.5;
        }
        
        /* Animations */
        @keyframes pulse {
            0% {
                opacity: 0.7;
            }
            50% {
                opacity: 0.3;
            }
            100% {
                opacity: 0;
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-15px);
            }
        }
        
        @keyframes bot-talk {
            0%, 40%, 60%, 80%, 100% {
                height: 10px;
            }
            50%, 70%, 90% {
                height: 15px;
            }
        }
        
        @keyframes pupil-move {
            0%, 100% {
                transform: translate(-50%, -50%);
            }
            25% {
                transform: translate(-70%, -30%);
            }
            50% {
                transform: translate(-30%, -70%);
            }
            75% {
                transform: translate(-70%, -70%);
            }
        }
        
        @keyframes particle-animation {
            0% {
                transform: translate(0, 0);
                opacity: 0;
            }
            10% {
                opacity: 0.5;
            }
            90% {
                opacity: 0.5;
            }
            100% {
                transform: translate(var(--end-x), var(--end-y));
                opacity: 0;
            }
        }
        
        .features-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 50px auto;
            max-width: 1000px;
        }
        
        .feature-card {
            width: 280px;
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border-top: 4px solid var(--renesi-blue);
        }
        
        .feature-card:nth-child(2) {
            border-top-color: var(--renesi-yellow);
        }
        
        .feature-card:nth-child(3) {
            border-top-color: var(--renesi-pink);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--renesi-blue);
        }
        
        .feature-card:nth-child(2) .feature-icon {
            color: var(--renesi-yellow);
        }
        
        .feature-card:nth-child(3) .feature-icon {
            color: var(--renesi-pink);
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.25rem;
        }
        
        .feature-description {
            color: #666;
            line-height: 1.5;
        }
        
        .cta-section {
            text-align: center;
            padding: 60px 0;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(90deg, var(--renesi-blue) 0%, #3a7ac9 100%);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(69,141,226,0.4);
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(69,141,226,0.5);
        }
        
        .footer {
            background-color: #2d3748;
            color: #a0aec0;
            padding: 40px 0;
            text-align: center;
        }
        
        .footer-logo {
            max-width: 150px;
            filter: brightness(0) invert(1);
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 20px 0;
        }
        
        .footer-link {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-link:hover {
            color: white;
        }
        
        .copyright {
            margin-top: 20px;
            font-size: 0.875rem;
        }
        .uploadCol {
            max-width: 800px;
			flex-direction: column;
        }
        .btnSubmit {
            background-color: var(--renesi-blue);
        }

        .typing-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 24px;
        }
        
        .typing-circle {
            width: 10px;
            height: 10px;
            background-color: #fff;
            border-radius: 50%;
            margin: 0 5px;
            animation: typing 1.5s infinite ease-in-out;
        }
        
        .typing-circle:nth-child(2) {
            animation-delay: 0.5s;
        }
        
        .typing-circle:nth-child(3) {
            animation-delay: 1s;
        }
        
        @keyframes typing {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
        @media (max-width: 1199px) {
            .bot-container {
                --hw: 550px;
            }
        }
        @media (max-width: 1024px) {
            .product-1, .product-2 {
                left: calc(50% - 450px);
            }
            
            .product-3, .product-4 {
                right: calc(50% - 450px);
            }
        }
        @media (max-width: 991px) {
            .bot-container {
                --hw: 460px;
            }
            .print-product {
                width: 160px;
                height: 160px;
            }
            .bot-eye {
                width: 40px;
                height: 40px;
            }
            .bot-eye::after {
                width: 20px;
                height: 20px;
            }
            .bot-mouth {
                width: 120px;
            }
            .product-1, .product-2 {
                left: calc(50% - 370px);
            }
            
            .product-3, .product-4 {
                right: calc(50% - 370px);
            }
        }
        @media (max-width: 768px) {
            .product-1, .product-2, .product-3, .product-4 {
                display: none;
            }
            
            .bot-container {
                --hw: 400px;
            }
        }
         @media (max-width: 485px) {
            .bot-container {
                --hw: 280px;
            }
            .bot-eyes {
                margin-bottom: 26px;
            }
            .bot-mouth {
                width: 62px;
            }
            .bot-eye {
                width: 35px;
                height: 35px;
            }
            .bot-eye::after {
                width: 15px;
                height: 15px;
            }
            @keyframes bot-talk {
                0%, 40%, 60%, 80%, 100% {
                    height: 6px;
                }
                50%, 70%, 90% {
                    height: 10px;
                }
            }
        }
		
		nav ul {
			gap: 30px;
		}
		nav ul li ul {
			display: none;
			position: absolute;
			background: #FFF;
			padding: 10px;
			border-radius: 0 0 10px 10px;
			z-index: 1;
		}
    

/* Extracted inline styles */
.extracted-style-0 { background-color: #F4F4F4 !important; }
.extracted-style-1 { background-image:url('https://renesi.com/images/bg1.svg'); background-position: bottom right; background-repeat: no-repeat; }
.extracted-style-2 { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-evenly; align-items: flex-start;  border-bottom: 1px solid #343a40 !important; }
.extracted-style-3 { height:20px; width:20px; margin: 0 0 0 13px; }

		#form-container, #chat-container, #upload-container {
            display: none;
        }
		
		.nav-link {
			border-bottom:3px solid #ffffff;
		}
		
		.nav-link a {
			color: #000000;
			font-size: 1.2em;
			font-weight: 500;
		}
		
		.nav-link:hover {
			border-bottom-color:#E47385;
		}
		
		.nav-link ul {
			margin-top:3px;
		}
		
		.nav-link ul li a {
			font-size: 1em;
		}
		
		#send-button span {
    display: inline-block;
    transform: scaleX(-1);
}

.msg-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
	
}

.d-flex {
	display: flex;
}

.font-weight-bold {
	font-weight: bold;
}