/* Chatbot Styles */
    .chatbot-container {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 380px;
        height: 550px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        z-index: 1000;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow: hidden;
        transition: all 0.3s ease;
        transform: translateY(10px);
        opacity: 0;
        visibility: hidden;
    }
    
    .chatbot-container.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .chatbot-header {
        background: #10ADAC;
        color: white;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
    }
    
    .chatbot-header-left {
        display: flex;
        align-items: center;
    }
    
    .chatbot-avatar {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        color: #2e7d32;
        font-size: 20px;
    }
    
    .chatbot-title {
        font-weight: 600;
        font-size: 16px;
    }
    
    .chatbot-subtitle {
        font-size: 12px;
        opacity: 0.8;
    }
    
    .chatbot-actions {
        display: flex;
        gap: 10px;
    }
    
    .chatbot-actions i {
        cursor: pointer;
        font-size: 16px;
        transition: all 0.2s;
    }
    
    .chatbot-actions i:hover {
        transform: scale(1.1);
    }
    
    .chatbot-body {
        flex: 1;
        padding: 15px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: #f9f9f9;
    }
    
    .message {
        max-width: 80%;
        padding: 10px 15px;
        border-radius: 18px;
        font-size: 14px;
        line-height: 1.4;
        position: relative;
    }
    
    .bot-message {
        background: white;
        border-bottom-left-radius: 5px;
        align-self: flex-start;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .user-message {
        background: #e3f2fd;
        border-bottom-right-radius: 5px;
        align-self: flex-end;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .message-time {
        font-size: 10px;
        color: #888;
        margin-top: 5px;
        text-align: right;
    }
    
    .typing-indicator {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 10px 15px;
        background: white;
        border-radius: 18px;
        border-bottom-left-radius: 5px;
        align-self: flex-start;
        width: fit-content;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .typing-dot {
        width: 8px;
        height: 8px;
        background: #bbb;
        border-radius: 50%;
        animation: typing 1.4s infinite ease-in-out;
    }
    
    .typing-dot:nth-child(1) { animation-delay: 0s; }
    .typing-dot:nth-child(2) { animation-delay: 0.2s; }
    .typing-dot:nth-child(3) { animation-delay: 0.4s; }
    
    @keyframes typing {
        0%, 60%, 100% { transform: translateY(0); }
        30% { transform: translateY(-5px); }
    }
    
    .options-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }
    
    .option-btn, .sub-option {
        background: #10ADAC;
        color: white;
        border: none;
        padding: 8px 12px;
        border-radius: 20px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.2s;
        display: inline-block;
    }
    
    .option-btn:hover, .sub-option:hover {
        background: #3d8b40;
        transform: translateY(-2px);
    }
    
    .sub-options {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .sub-option {
        background: #e8f5e9;
        color: #2e7d32;
        text-align: left;
    }
    
    .sub-option:hover {
        background: #c8e6c9;
    }
    
    .chatbot-footer {
        padding: 15px;
        border-top: 1px solid #eee;
        background: white;
    }
    
    .chat-input-container {
        display: flex;
        gap: 10px;
    }
    
    .chat-input {
        flex: 1;
        border: 1px solid #ddd;
        border-radius: 20px;
        padding: 10px 15px;
        font-size: 14px;
        outline: none;
    }
    
    .chat-input:focus {
        border-color: #4caf50;
    }
    
    .send-btn {
        background: #10ADAC;
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }
    
    .send-btn:hover {
        background: #3d8b40;
        transform: scale(1.05);
    }
    
   
    .chatbot-toggle {
        position: fixed;
        bottom: 180px;
        right: 20px;
        width: 100px;
        height: 60px;
        background: #10ADAC;
        border-radius: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        z-index: 999;
        transition: all 0.3s;
    }
    .chatbot-toggle .chatfont{
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 20px;
        padding: 10px 12px;
        margin-left: 15px;
    }
     .chatfont img{
        width: 40px;
        height: 40px;
        margin-left: -10px;
        margin-top: -20px;
    }
    
    .chatbot-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    .export-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .export-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .export-content {
        background: white;
        width: 90%;
        max-width: 500px;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    .export-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eee;
    }
    
    .export-title {
        font-weight: 600;
        color: #2e7d32;
    }
    
    .close-export {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #777;
    }
    
    .export-body {
        max-height: 300px;
        overflow-y: auto;
        margin-bottom: 20px;
        padding: 10px;
        background: #f9f9f9;
        border-radius: 8px;
        font-size: 14px;
        line-height: 1.5;
    }
    
    .export-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .export-btn, .cancel-btn {
        padding: 8px 15px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.2s;
        border: none;
    }
    
    .export-btn {
        background: #4caf50;
        color: white;
    }
    
    .export-btn:hover {
        background: #3d8b40;
    }
    
    .cancel-btn {
        background: #f5f5f5;
        color: #333;
    }
    
    .cancel-btn:hover {
        background: #e0e0e0;
    }
    
    /* Pricing and Service Styles */
    .pricing-container {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
        border-left: 4px solid #4caf50;
    }
    
    .pricing-title {
        font-weight: 600;
        color: #2e7d32;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .pricing-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .service-name {
        font-weight: 500;
    }
    
    .service-price {
        color: #2e7d32;
        font-weight: 600;
    }
    
    .service-list {
        margin-top: 10px;
        padding-left: 15px;
    }
    
    .service-list li {
        margin-bottom: 5px;
        font-size: 13px;
    }
    
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 10px;
    }
    
    .product-item {
        background: white;
        border-radius: 8px;
        padding: 10px;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        font-size: 12px;
        font-weight: 500;
        color: #2e7d32;
        border: 1px solid #e0e0e0;
        transition: all 0.3s;
    }
    
    .product-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .product-icon {
        font-size: 24px;
        margin-bottom: 5px;
        color: #4caf50;
    }
    
    .highlight {
        background: #e8f5e9;
        padding: 8px 12px;
        border-radius: 8px;
        margin-top: 10px;
        font-size: 13px;
        border-left: 3px solid #4caf50;
    }
    
    .product-image {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 5px;
        margin-bottom: 8px;
        border: 1px solid #e0e0e0;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .product-image:hover {
        transform: scale(1.05);
    }
    
    .buy-btn {
        background: #4caf50;
        color: white;
        border: none;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 11px;
        cursor: pointer;
        margin-top: 5px;
        transition: all 0.2s;
        width: 100%;
    }
    
    .buy-btn:hover {
        background: #3d8b40;
        transform: translateY(-2px);
    }
    
    .service-category {
        font-weight: 600;
        color: #2e7d32;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    
    .product-name {
        font-weight: 600;
        margin: 5px 0;
        font-size: 13px;
    }
    
    .product-price {
        color: #2e7d32;
        font-weight: 600;
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    /* Image Zoom Modal */
    .image-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .image-modal.active {
        opacity: 1;
        visibility: visible;
    }
    
    .image-modal-content {
        max-width: 90%;
        max-height: 90%;
        position: relative;
    }
    
    .image-modal-content img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .close-image {
        position: absolute;
        top: -40px;
        right: 0;
        background: none;
        border: none;
        color: white;
        font-size: 30px;
        cursor: pointer;
    }
    
    .image-caption {
        position: absolute;
        bottom: -40px;
        left: 0;
        width: 100%;
        text-align: center;
        color: white;
        font-size: 16px;
    }
    
    /* Schedule Form Styles */
    .schedule-form {
        background: white;
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        font-size: 13px;
        color: #333;
    }
    
    .form-input, .form-select, .form-textarea {
        width: 100%;
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 13px;
        box-sizing: border-box;
    }
    
    .form-textarea {
        height: 80px;
        resize: vertical;
    }
    
    .submit-btn {
        background: #4caf50;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        width: 100%;
        transition: all 0.2s;
    }
    
    .submit-btn:hover {
        background: #3d8b40;
    }
    
    .schedule-summary {
        background: #e8f5e9;
        padding: 12px;
        border-radius: 8px;
        margin-top: 15px;
        border-left: 4px solid #4caf50;
    }
    
    .summary-item {
        display: flex;
        margin-bottom: 5px;
        font-size: 13px;
    }
    
    .summary-label {
        font-weight: 500;
        min-width: 120px;
    }
    
    /* Service Details Styles */
    .service-details {
        background: #f0f7ff;
        border-radius: 10px;
        padding: 15px;
        margin-top: 10px;
        border-left: 4px solid #10ADAC;
    }
    
    .service-details-title {
        font-weight: 600;
        color: #10ADAC;
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .benefits-list {
        margin-top: 10px;
        padding-left: 15px;
    }
    
    .benefits-list li {
        margin-bottom: 8px;
        font-size: 13px;
        position: relative;
        padding-left: 5px;
    }
    
    .benefits-list li:before {
        content: "✓";
        color: #4caf50;
        font-weight: bold;
        margin-right: 8px;
    }
    
    .coverage-area {
        background: #e8f5e9;
        padding: 10px;
        border-radius: 8px;
        margin-top: 10px;
        font-size: 13px;
    }
    
    .coverage-title {
        font-weight: 600;
        color: #2e7d32;
        margin-bottom: 5px;
    }
    .chatbot-powered {
            text-align: center;
            font-size: 10px;
            color: #999;
            padding: 10px;
            margin-left: 30px;
            border-top: 1px solid #e0e0e0;
            background: white;
        }
