/*
Template Name: Hivehaven Interior
File: Layout CSS
Developed By: V. Aswin
LinkedIn: https://www.linkedin.com/in/talktoaswin
Copyright: © Aswin. All Rights Reserved.
Licence: Aswin's Website Template Licence</a>
*/

/*********************contact****************/
.center_cont {
background-image: url(../img/28.jpg);
background-position: center;
}
.center_price {
background-image: url(../img/29.jpg);
background-position: center;
}

.pricing_1i:hover{
border:1px solid #daa14c; 
 }
/*********************contact_end****************/


@media screen and (max-width : 767px){
.pricing_1i  {
margin-top:8px;
margin-bottom:8px; 
 }
#cont_pg{
text-align:center; 
 }
#cont_pg p{
text-align:left; 
 }
.cont_pg1r{
margin-top:15px; 
 }
.quote_1r  h6{
text-align:center; 
 }

 }

@media (min-width:576px) and (max-width:767px) {

 }
@media (min-width:768px) and (max-width:991px) {
.pricing_1i  h1{
font-size:32px; 
 }
.pricing_1i  .button_1{
padding-left:10px;
padding-right:10px;
font-size:12px;
 }
.cont_pg1lil .font_60{
font-size:30px; 
 }
.quote_1r {
padding:0!important; 
 }
 }

@media (min-width:992px) and (max-width:1200px) {
.cont_pg1lil .font_60{
font-size:40px; 
 }
.quote_1r {
padding:0!important; 
 }
 }
 
/* Chatbot Container */
#chatbot {
    position: fixed;
    bottom: 20px; /* Adjusted position for better spacing */
    right: 80px;
    z-index: 1000;
  }
  
  .chatbot-container {
    background-color: #2c2c2c;
    color: #f5f5f5;
    width: 350px;
    max-height: 500px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    transition: right 0.3s, bottom 0.3s;
  }
  
  /* Chat Header */
  .chat-header {
    background-color: #e65100;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #fff;
    font-size: 1.2em;
  }
  
  .chat-header .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
  }
  
  /* Chat Body */
  .chat-body {
    flex: 1;
    padding: 15px;
    background-color: #333;
    font-size: 0.95em;
    overflow-y: auto;
    max-height: 350px;
    display: flex;
    flex-direction: column;
  }
  
  /* Chat Footer */
  .chat-footer {
    display: flex;
    padding: 10px;
    background-color: #1a1a1a;
    border-top: 1px solid #555;
  }
  
  .chat-footer input[type="text"] {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    margin-right: 8px;
    background-color: #444;
    color: #fff;
    font-size: 0.95em;
  }
  
  .chat-footer button {
    background-color: #f57f17;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s;
  }
  
  .chat-footer button:hover {
    background-color: #ff9100;
  }
  
  /* Messages */
  .message {
    padding: 10px 15px;
    border-radius: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    word-wrap: break-word;
    max-width: 75%;
    display: inline-block;
  }
  
  .bot-message {
    background-color: #ffcc80;
    color: #333;
    border-radius: 18px 18px 18px 5px;
    font-family: 'Helvetica Neue', sans-serif;
    align-self: flex-start; /* Align bot messages to the left */
  }
  
  .user-message {
    background-color: #ff7043;
    color: #fff;
    align-self: flex-end; /* Align user messages to the right */
    border-radius: 18px 18px 5px 18px;
    font-family: 'Helvetica Neue', sans-serif;
    text-align: right;
  }
  
  .loading {
    font-style: italic;
    opacity: 0.6;
    background: none; /* Remove background for 'Typing...' text */
    padding: 0; /* Remove padding for 'Typing...' text */
    margin-left: 5px;
    margin-bottom: 10px;
  }
  
  /* Chat Toggle Button */
  .chat-toggle-btn {
    position: fixed;
    bottom: 30px; /* Adjusted position */
    right: 30px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
    width: 70px; /* Increased size for better visibility */
    height: 70px;
    transition: transform 0.3s ease;
  }
  
  .chat-toggle-btn:hover {
    transform: scale(1.1);
  }
  
  .chat-toggle-btn img {
    width: 100%;
    height: 100%;
    background-color: transparent;
    object-fit: cover;
  }
  
  /* Responsive styles for mobile and tablet screens */
  @media (max-width: 768px) {
    #chatbot {
      bottom: 70px; /* Raised the container slightly for mobile */
      right: 10px;
    }
  
    .chatbot-container {
      width: 95%; /* Increase width on mobile */
      max-width: 380px; /* Adjust max-width to make the container wider */
      max-height: 90%;
      border-radius: 10px;
    }
  
    .chat-header {
      font-size: 1em;
      padding: 10px;
    }
  
    .chat-body {
      padding: 10px;
      font-size: 0.85em;
      max-height: 300px;
    }
  
    .chat-footer {
      padding: 8px;
    }
  
    .chat-footer input[type="text"] {
      padding: 8px;
      font-size: 0.85em;
    }
  
    .chat-footer button {
      padding: 8px 12px;
      font-size: 0.85em;
    }
  
    .chat-toggle-btn {
      bottom: 20px; /* Ensure the button is properly positioned */
      right: 20px;
      width: 60px; /* Slightly smaller for mobile screens */
      height: 60px;
    }
  
    .chat-toggle-btn img {
      width: 100%;
      height: 100%;
    }
  
    .message {
      padding: 8px 12px;
      font-size: 0.85em;
    }
  }
  