* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Header & Navigation */
        header {
            background-color: rgb(25, 24, 24);
           
            box-shadow: 0 2px 10px rgba(85, 85, 85, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            color: white;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
        }

        .hyphen {
            color: #ff6b6b;
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
        }

        .desktop-nav ul {
            display: flex;
            list-style: none;
        }

        .desktop-nav ul li {
            margin-left: 25px;
        }

        .desktop-nav ul li a {
            text-decoration: none;
            color: #f5f2f2;
            font-weight: 500;
            transition: color 0.3s;
        }

        .desktop-nav ul li a:hover,
        .desktop-nav ul li a.active {
            color: #f5f6f8;
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
               height: 100vh;
            background-color: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 1001;
            padding: 20px;
            overflow-y: auto;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .mobile-nav-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #333;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav ul li {
            margin-bottom: 15px;
        }

        .mobile-nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
            transition: color 0.3s;
        }

        .mobile-nav ul li a:hover,
        .mobile-nav ul li a.active {
            color: #4a6cf7;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
        }

        .overlay.active {
            display: block;
        }

        /* Home/Hero Section */
        #home {
            padding: 150px 0 80px;
            background: linear-gradient(rgb(19, 17, 17),rgb(26, 25, 25));
            color: white;
        }
       
        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            padding-right: 30px;
        }

        .hero-text h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #ff6b6b;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            margin-right: 15px;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: white;
            color: #4a6cf7;
        }

        /* Section Styling */
        section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: #333;
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Features Section */
        #features {
            background-color: rgb(255, 255, 255);
        }

        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature {
            text-align: center;
            padding: 30px 20px;
            background: rgb(242, 239, 239);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .feature:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            height: 80px;
            width: 80px;
            line-height: 80px;
            border-radius: 50%;
            color: white;
            background-color: #053fdf;
            margin: 0 auto 20px;
        }

        .feature h3 {
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        /* Chatbots Section */
        #chatbots {
            background-color: #f8f9fa;
        }

        .chatbots-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .chatbot {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s;
        }

        .chatbot:hover {
            transform: translateY(-5px);
        }

        .chatbot-header {
            display: flex;
            align-items: center;
            padding: 15px;
            background-color: #4a6cf7;
            color: white;
        }

        .chatbot-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 10px;
            background-color: white;
        }

        .chatbot-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .chatbot-title {
            flex: 1;
            font-weight: 600;
        }

        .chatbot-actions {
            display: flex;
        }

        .chatbot-action {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            margin-left: 10px;
            cursor: pointer;
        }

        .chatbot-description {
            padding: 15px;
            font-size: 0.9rem;
            color: #666;
            border-bottom: 1px solid #eee;
        }

        .chat-window {
            height: 300px;
            overflow-y: auto;
            padding: 15px;
            background-color: #f8f9fa;
        }

        .message {
            margin-bottom: 15px;
            display: flex;
        }

        .bot-message {
            justify-content: flex-start;
        }

        .user-message {
            justify-content: flex-end;
        }

        .message-bubble {
            max-width: 80%;
            padding: 10px 15px;
            border-radius: 18px;
            position: relative;
        }

        .bot-message .message-bubble {
            background-color: white;
            border-top-left-radius: 5px;
        }

        .user-message .message-bubble {
            background-color: #4a6cf7;
            color: white;
            border-top-right-radius: 5px;
        }

        .message-time {
            font-size: 0.7rem;
            opacity: 0.7;
            margin-top: 5px;
            text-align: right;
        }

        .typing-indicator {
            display: inline-block;
        }

        .typing-dot {
            display: inline-block;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #999;
            margin: 0 2px;
            animation: typing 1.5s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) {
            animation-delay: -0.26s;
        }

        .typing-dot:nth-child(2) {
            animation-delay: -0.26s;
        }

        @keyframes typing {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .chat-input {
            display: flex;
            padding: 15px;
            border-top: 1px solid #eee;
        }

        .chat-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-right: 10px;
            outline: none;
        }

        .chat-input button {
            padding: 10px 20px;
            background-color: #4a6cf7;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        /* Button Menu */
        .button-menu {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 10px;
        }

        .menu-btn {
            background-color: #e9ecef;
            border: none;
            border-radius: 20px;
            padding: 8px 15px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .menu-btn:hover {
            background-color: #4a6cf7;
            color: white;
        }

        .menu-btn-main {
            background-color: #ff6b6b;
            color: white;
            margin-top: 10px;
        }

        /* Contact Form */
        .contact-form {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 15px;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            outline: none;
        }

        .form-group input:focus {
            border-color: #4a6cf7;
        }

        .form-submit {
            background-color: #4a6cf7;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
        }

        /* Pricing Section */
        #pricing {
            background-color: white;
        }

        .pricing-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .plan {
            background: linear-gradient(rgb(23, 23, 29),rgb(45, 45, 73));
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            text-align: center;
            position: relative;
            transition: transform 0.3s;
        }

        .plan:hover {
            background: linear-gradient(rgb(3, 3, 145),rgb(10, 10, 251));
            transition: transform 1.5s;
            transform: translateY(-10px);
        }

        .plan.popular {
            border: 2px solid #c3c8da;
        }
        .plan-basic{
            border: 2px solid blue;
        }
        .plan-enterprise{
            border: 2px solid blue;
        }
        .plan.popular::before {
            content: "Most Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #4a6cf7;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        

        .plan-header h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: rgb(224, 224, 224);
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #f6f7f9;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: normal;
            color:rgb(228, 159, 159);
        }
        .plan-header p{
            color: rgb(6, 224, 53);
        }
        
        
        .plan-features {
            margin: 30px 0;
        }

        .plan-features ul {
            list-style: none;
            text-align: left;
            color: white;
        }

        .plan-features ul li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }

        .plan-features ul li:before {
            content: "✓";
            color: #e5e6ec;
            margin-right: 10px;
            font-weight: bold;
        }

        .plan-button {
            display: inline-block;
            padding: 12px 30px;
            background-color: #0426ad;
            color: white;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .plan-button:hover {
            background-color: #3a5bd9;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* Footer */
        footer {
            background-color: #1a1a1a;
            color: white;
            padding: 60px 0 20px;
        }

        .contact-head {
            text-align: center;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #4a6cf7;
        }

        .footer-col p {
            margin-bottom: 20px;
            opacity: 0.8;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .footer-col ul li a:hover {
            opacity: 1;
        }

        .footer-col ul li i {
            margin-right: 10px;
            color: #4a6cf7;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color: #4a6cf7;
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        .link-web {
            color: #4a6cf7;
            text-decoration: none;
        }

        /* Sticky Chatbot */
        .sticky-chatbot-toggle2 {
            position: fixed;
            bottom: 50px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .sticky-chatbot-toggle2 span {
            background-color: #ff6b6b;
            color: white;
            padding: 5px 10px;
            margin-top: 100px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 5px;
        }

        .sticky-chatbot-toggle1 {
            background-color: white;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 5px;
        }

        .sticky-chatbot-toggle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

.sticky-chatbot-toggle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .sticky-chatbot-container {
            position: fixed;
            bottom: 190px;
            right: 30px;
            width: 350px;
            height: 400px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            display: none;
        }

        .sticky-chatbot {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .sticky-chatbot-header {
            display: flex;
            align-items: center;
            padding: 15px;
            background-color: #4a6cf7;
            color: white;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .sticky-chatbot-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 10px;
            background-color: white;
        }

        .sticky-chatbot-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .sticky-chatbot-title {
            flex: 1;
            font-weight: 600;
        }

        .sticky-chatbot-actions {
            display: flex;
        }

        .sticky-chatbot-action {
            background: none;
            border: none;
            color: white;
            font-size: 1.2rem;
            margin-left: 10px;
            cursor: pointer;
        }

        .sticky-chatbot-messages {
            height: 300px;
            overflow-y: auto;
            padding: 15px;
            background-color: #f8f9fa;
        }

        .sticky-chatbot-input-area {
            display: flex;
            padding: 15px;
            border-top: 1px solid #eee;
        }

        .sticky-chatbot-input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin-right: 10px;
            outline: none;
        }

        .sticky-chatbot-send {
            padding: 10px 20px;
            background-color: #4a6cf7;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }

        /* WhatsApp Button */
        .whatsapp_button {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            cursor: pointer;
        }

        /* Individual chatbot color schemes */
        .chatbot-1 .chatbot-header { background: #ff6b6b; }
        .chatbot-1 .chatbot-avatar { background: #ff5252; }
        
        .chatbot-2 .chatbot-header { background: #4ecdc4; }
        .chatbot-2 .chatbot-avatar { background: #26a69a; }
        
        .chatbot-3 .chatbot-header { background: #ffd166; }
        .chatbot-3 .chatbot-avatar { background: #ffc107; }
        
        .chatbot-4 .chatbot-header { background: #6a0572; }
        .chatbot-4 .chatbot-avatar { background: #4a0366; }
        
        .chatbot-5 .chatbot-header { background: #118ab2; }
        .chatbot-5 .chatbot-avatar { background: #0a6c8f; }
        
        .chatbot-6 .chatbot-header { background: #06d6a0; }
        .chatbot-6 .chatbot-avatar { background: #05b384; }
        
        .chatbot-7 .chatbot-header { background: #ef476f; }
        .chatbot-7 .chatbot-avatar { background: #e63946; }
        
        .chatbot-8 .chatbot-header { background: #7209b7; }
        .chatbot-8 .chatbot-avatar { background: #560bad; }
        
        .chatbot-9 .chatbot-header { background: #f3722c; }
        .chatbot-9 .chatbot-avatar { background: #e85d04; }
        
        .chatbot-10 .chatbot-header { background: #277da1; }
        .chatbot-10 .chatbot-avatar { background: #1d6a96; }
        
        .chatbot-11 .chatbot-header { background: #90be6d; }
        .chatbot-11 .chatbot-avatar { background: #7cb357; }
        
        .chatbot-12 .chatbot-header { background: #f8961e; }
        .chatbot-12 .chatbot-avatar { background: #f3722c; }
        
        .chatbot-13 .chatbot-header { background: #43aa8b; }
        .chatbot-13 .chatbot-avatar { background: #2d936c; }
        
        .chatbot-14 .chatbot-header { background: #577590; }
        .chatbot-14 .chatbot-avatar { background: #4a5f7a; }
        
        .chatbot-15 .chatbot-header { background: #f94144; }
        .chatbot-15 .chatbot-avatar { background: #d90429; }
        
        .chatbot-16 .chatbot-header { background: #f9c74f; }
        .chatbot-16 .chatbot-avatar { background: #f8961e; }
        
        .chatbot-17 .chatbot-header { background: #277da1; }
        .chatbot-17 .chatbot-avatar { background: #1d6a96; }
        
        .chatbot-18 .chatbot-header { background: #9b5de5; }
        .chatbot-18 .chatbot-avatar { background: #8338ec; }


       
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav-toggle {
                display: block;
            }
            
            .sticky-chatbot-container {
                width: 300px;
                right: 20px;
            }
        }

        @media (max-width: 768px) {
            .chatbots-container {
                grid-template-columns: 1fr;
            }
            
            .sticky-chatbot-container {
                width: calc(100% - 40px);
                right: 20px;
                left: 20px;
            }
            
            .logo {
                font-size: 1.5rem;
            }
        }
        /* Voice Controls Styling */
.voice-controls-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    margin: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
}

.voice-controls-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.voice-controls-header h4 {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.voice-controls-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.voice-action-btn {
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
}

.voice-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.voice-action-btn.stop-listening-btn {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
}

.voice-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2ed573;
    position: relative;
}

.pulse-dot.listening {
    background: #ff4757;
    animation: pulse 1.5s infinite;
}

.pulse-dot.speaking {
    background: #ffa502;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 213, 115, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 213, 115, 0);
    }
}

.status-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.voice-instructions {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.voice-instructions p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.keyword {
    background: #e6e9ff;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
}

.keyword:hover {
    background: #667eea;
    color: white;
}

.voice-indicator {
    font-size: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 5px;
    animation: voicePulse 2s infinite;
}

@keyframes voicePulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Chat message styling */
.message {
    padding: 10px 15px;
    margin: 8px 0;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
    position: relative;
    animation: messageAppear 0.3s ease;
}

@keyframes messageAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.bot-message {
    background: #f1f3f9;
    color: #333;
    margin-right: auto;
    border-bottom-left-radius: 5px;
    border-left: 3px solid #667eea;
}

.typing-indicator {
    display: flex;
    gap: 5px;
    padding: 10px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #667eea;
    animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingAnimation {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Voice mode active state */
.chatbot.voice-mode-active {
    border: 2px solid #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .voice-controls-content {
        padding: 15px;
    }
    
    .voice-action-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .keywords-list {
        justify-content: center;
    }
    
    .message {
        max-width: 90%;
        font-size: 14px;
    }
}
/* Professional Voice Interface */
.voice-visual-feedback {
    text-align: center;
    padding: 20px 0;
}

.voice-waves {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 40px;
    margin-bottom: 20px;
}

.wave {
    width: 8px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    animation: waveAnimation 1.5s infinite ease-in-out;
}

.wave:nth-child(2) { animation-delay: 0.2s; }
.wave:nth-child(3) { animation-delay: 0.4s; }

@keyframes waveAnimation {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

.voice-instructions {
    background: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.voice-instructions p {
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
}

.voice-instructions p i {
    color: #ffa502;
}

.voice-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.voice-suggestions span {
    background: #f0f4ff;
    color: #667eea;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #d1d8ff;
}

.voice-control-buttons {
    margin: 20px 0;
}

.voice-action-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.voice-action-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.voice-action-btn:hover:after {
    left: 100%;
}

.voice-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.voice-action-btn.stop-listening-btn {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
}

.voice-action-btn.listening {
    animation: pulseGlow 1.5s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 71, 87, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 71, 87, 0); }
}

/* Chat messages */
.message {
    margin: 10px 0;
    padding: 12px 15px;
    border-radius: 15px;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-message {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-left: auto;
    border-bottom-right-radius: 5px;
}

.bot-message {
    background: #f8f9fa;
    color: #333;
    margin-right: auto;
    border-bottom-left-radius: 5px;
    border-left: 3px solid #667eea;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.message-content {
    word-wrap: break-word;
    line-height: 1.5;
}

.message-time {
    font-size: 11px;
    opacity: 0.6;
    margin-top: 5px;
    text-align: right;
}

.chat-window {
    height: 200px;
    overflow-y: auto;
    padding: 15px;
    background: white;
    border-radius: 5px;
    margin: 10px 15px;
    border: 1px solid #e0e0e0;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
}

.chat-window::-webkit-scrollbar {
    width: 6px;
}

.chat-window::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.chat-window::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 10px;
}

.chat-input {
    display: flex;
    padding: 10px 15px;
    background: white;
    border-top: 1px solid #e0e0e0;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.chat-input input:focus {
    border-color: #667eea;
}

.chat-input button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-input button:hover {
    transform: translateY(-2px);
}

/* Voice status indicator */
.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2ed573;
    position: relative;
}

.pulse-dot.listening {
    background: #ff4757;
    animation: pulse 1.5s infinite;
}

.pulse-dot.speaking {
    background: #ffa502;
    animation: pulse 1.5s infinite;
}

.status-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Voice mode active state */
.voice-mode-active {
    border: 2px solid #667eea !important;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1) !important;
}

/* Microphone animation for listening */
@keyframes listeningAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.listening .fa-microphone {
    animation: listeningAnimation 1s infinite;
}
/* Language indicator for sticky chatbot */
.language-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 15px;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.language-indicator.english {
    background: #1976d2;
    color: white;
}

.language-indicator.malayalam {
    background: #388e3c;
    color: white;
}

/* Status indicators */
.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    display: inline-block;
    margin-right: 5px;
}

.status-dot.active {
    background: #4CAF50;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Voice controls visibility */
#voice-controls-1,
#voice-controls-2,
#voice-controls-3 {
    display: none;
}

.voice-mode-active #voice-controls-1,
.voice-mode-active #voice-controls-2,
.voice-mode-active #voice-controls-3 {
    display: block !important;
}
.blog {
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}
/* New Testimonials Section after Blog */
#more-testimonials {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    position: relative;
    color: white;
    padding: 100px 0;
    overflow: hidden;
}

#more-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

#more-testimonials .container {
    position: relative;
    z-index: 1;
}

#more-testimonials .section-title h2 {
    color: white;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

#more-testimonials .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

#more-testimonials .section-title p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Testimonial Grid Layout */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Rating Stars */
.rating {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.rating i {
    margin-right: 2px;
}

/* Testimonial Author */
.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Service Badge */
.service-badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 10px;
    font-weight: 500;
}

/* Testimonial Stats */
.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    text-align: center;
}

.stat-item h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Responsive Styles for New Testimonials */
@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #more-testimonials {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
}
section {
    margin-bottom: 0;
}
#contact {
    padding: 0 !important;
    margin: 0;
}
/* Additional styles for calling chatbots */
        .calling-chatbot-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .calling-chatbot {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s ease;
            position: relative;
        }
        
        .calling-chatbot:hover {
            transform: translateY(-5px);
        }
        
        .phone-design {
            padding: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .phone-design.customer-care {
            background: linear-gradient(135deg, #4A90E2 0%, #2E5AA6 100%);
        }
        
        .phone-design.health-advisor {
            background: linear-gradient(135deg, #34D399 0%, #059669 100%);
        }
        
        .phone-design.travel-planner {
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
        }
        
        .phone-screen {
            background: #1a1a1a;
            border-radius: 20px;
            padding: 15px;
            min-height: 320px;
            color: white;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            position: relative;
            overflow: hidden;
        }
        
        .phone-notch {
            width: 60%;
            height: 25px;
            background: #000;
            border-radius: 0 0 15px 15px;
            margin: -15px auto 15px;
            position: relative;
            z-index: 1;
        }
        
        .phone-status-bar {
            display: flex;
            justify-content: space-between;
            padding: 5px 10px;
            font-size: 12px;
            color: #ccc;
            margin-bottom: 15px;
        }
        
        .contact-info {
            text-align: center;
            margin: 20px 0;
        }
        
        .contact-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            overflow: hidden;
        }
        
        .contact-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .contact-name {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .contact-role {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
        }
        
        .call-button {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: #10B981;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            margin: 20px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
        }
        
        .call-button:hover {
            background: #059669;
            transform: scale(1.05);
        }
        
        .call-button.ringing {
            background: #EF4444;
            animation: pulse 1.5s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
            100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
        }
        
        .call-button.connected {
            background: #10B981;
        }
        
        .ringing-screen, .connected-screen {
            display: none;
            text-align: center;
            padding: 20px;
        }
        
        .ringing-animation {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 20px 0;
        }
        
        .ringing-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10B981;
            animation: ring 1.4s ease-in-out infinite;
        }
        
        .ringing-dot:nth-child(2) { animation-delay: 0.2s; }
        .ringing-dot:nth-child(3) { animation-delay: 0.4s; }
        
        @keyframes ring {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-10px); }
        }
        
        .countdown-timer {
            font-size: 48px;
            font-weight: bold;
            color: #10B981;
            margin: 20px 0;
        }
        
        .connected-screen .response-area {
            background: rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 15px;
            margin-top: 20px;
            max-height: 150px;
            overflow-y: auto;
            text-align: left;
        }
        
        .response-text {
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 10px;
        }
        
        .response-text.ai {
            color: #10B981;
        }
        
        .response-text.user {
            color: #60A5FA;
            text-align: right;
        }
        
        .end-call-button {
            background: #EF4444;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            margin-top: 15px;
            transition: background 0.3s;
        }
        
        .end-call-button:hover {
            background: #DC2626;
        }
        
        .calling-chatbot-info {
            padding: 20px;
            background: white;
        }
        
        .calling-chatbot-info h3 {
            margin-bottom: 10px;
            color: #333;
        }
        
        .calling-chatbot-info p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .chatbot-capabilities {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        
        .capability-tag {
            background: #f0f5ff;
            color: #4A90E2;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }
        
        .call-duration {
            font-size: 12px;
            color: #999;
            text-align: center;
            margin-top: 10px;
        }
        