     /* Your CSS code here */
     body {
        font-family: Arial, sans-serif;
      }
  img{
  width:50px;
  height:50px;
  }
  
   #chatbot-toggle {
        position: fixed;
        bottom: 20px;
        right: 480px;
        background-color:#40542c;
        color: white;
        border: none;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        font-size: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        z-index: 1;
      }
       #icon-img{
         width: 45px;
        height: 45px;
       }
      #chat-widget {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 425px;
        height: 450px;
        background-color:#40542c;
        border-radius: 16px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        overflow: hidden;
      }
      
      #chatbox {
        flex-grow: 1;
        padding: 10px;
        overflow-y: auto;
        background-color:white;
      }
      
      .chat-user {
        text-align: right;
        color: #40542c;
        font-size: 16px;
        line-height: 24px;
        margin: 12px 0;
      }
      
      .chat-assistant {
        position: relative;
        max-width: 315px;
        text-align: left;
        color: #0D082C;
        font-size: 16px;
        line-height: 22px;
        padding-left: 30px;
        margin: 12px 0;
      }
      
      #chat-form {
        display: flex;
        align-items: center;
        padding: 8px 16px;
        border-top: 1px solid #E0E0E0;
        background-color: #F5F5F5;
      }
      
      #chat-input {
        background-color: transparent;
        color: #0D082C99;
        font-size: 16px;
        font-width: 600;
        line-height: 24.34px;
        flex-grow: 1;
        border: 0;
        outline: 0;
        border-radius: 0;
        padding: 0;
        margin-right: 10px;
      }
  
  #chat-input::placeholder {
  color: #0D082C99;
  font-size: 16px;
  font-width: 600;
  line-height: 24.34px;
  }
  
  #chat-input:focus {
  color: #000000;
  }
      
      button {
        background-color: #40542c;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 5px 10px;
        cursor: pointer;
      }
      
      button:hover {
        background-color: #40542c;
      }
  .chatbot-header {
  color: white; /* Set the text color */
  background-color:#40542c ;
  padding: 16px; /* Add some padding for a nicer look */
  font-weight: bold; /* Make the text bold */
  border: 2px solid #FFFFFF;
  border-radius: 16px 16px 0 0; 
  }
  
  .chatbot-header-line {
  display: flex;
  gap: 12px;
  }
  
  .chatbot-header-line .close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background-color: black;
  border-radius: 50%;
  }
  
  .chatbot-header-line .close-btn img {
  width: 14.4px;
  }
  
  .chat-box-title-line {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 0 2px 0;
  }
  
  .chat-box-title {
  flex: 1;
  font-family: "Titillium Web", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 18px;
  line-height: 27.38px;
  font-weight: 700;
  margin: 0;
  }
  
  .chat-box-title-line .invest-btn {
  color: white;
  background: #F26722;
  font-size: 14px;
  line-height: 21.29px;
  font-weight: 700;
  padding: 2px 12px;
  }
  
  .chat-box-title-line .invest-btn:hover {
  text-decoration: none;
  }
  
  .chatbot-header p {
  font-size: 14px;
  line-height: 18.2px;
  font-weight: 400;
  margin: 0;
  color:white;
  }
  
  .chatbot-helper {
  position: absolute;
  top: 35px;
  right: 0;
  font-size: 7px; /* Adjust the font size as needed */
  color: #ffffff; /* Adjust the text color as needed */
  padding: 2px 5px;
  }
  .chat-assistant::before {
  position: absolute;
  top: -1px;
  left: 0;
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url('https://scaledaycares.github.io/chatIcon/assistanticon.png'); /* Replace with the actual image URL */
  background-size: cover;
  vertical-align: middle;
  }
  #intro{
        bottom: 300px;
        color: white;
        top: auto;
      }
  
  #messagebtn {
  width: 32px;
  height: 32px;
  background-color:#40542c;
  border-radius: 50%;
  }
  
  #messagebtn img {
  width: 16px;
  height: 16px;
  }
  
  .loading-dots {
  display: flex;
  align-items: center;
   justify-content: flex-start; /* Changed from center to flex-start */
  margin: 10px 0;
  }
  
  .loading-dots > div {
  width: 8px;
  height: 8px;
  margin: 0 2px;
  background-color:#40542c; /* Or any color that suits your chatbox */
  border-radius: 50%;
  animation: loading-animation 1.4s infinite ease-in-out both;
  }
  
  .loading-dots > div:nth-child(1) { animation-delay: -0.32s; }
  .loading-dots > div:nth-child(2) { animation-delay: -0.16s; }
  
  @keyframes loading-animation {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
  }
  
  
  .loading-dots span {
  margin-left: 5px;
  color: #40542c; /* Adjust color as needed */
  font-size: 14px; /* Adjust font size as needed */
  }
  a{
  color:#f86424;
  text-decoration:none;
  }
  #contactus{
  background-color: green; /* Green background */
    padding: 10px; /* Padding for some space inside the box */
    text-align: center; /* Center the text */
    color: white; /* White text color */
    font-size: 14px; /* Adjust font size as needed */
    border-top-left-radius: 10px; /* Match the border radius of the chat widget */
    border-top-right-radius: 10px; /* Match the border radius of the chat widget */
  display: block; /* Ensures it takes the full width */
  }
  a:hover {
    text-decoration: underline; /* Adds underline on hover for better user experience */
  }
  
  
  @media screen and (max-width: 490px) {
    #chat-widget {
      width: 346px;
      max-width: none;
      bottom: 8px;
      right: 8px;
    }
  }
  
  @media screen and (max-width: 386px) {
    #chat-widget {
      width: 290px;
    }
    .chat-box-title {
      font-size: 16px;
      line-height: 20px;
    }
    .chatbot-header p {
      font-size: 12px;
      line-height: 16.2px;
    }
    #chat-input, .chat-assistant, .chat-user {
      font-size: 14px;
    }
    .chat-assistant::before {
      width: 20px;
      height: 20px;
    }
    #chat-form {
      padding: 6px 16px;
    }
  }
  .tour-booking {
    background-color: green;
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 14px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: block;
  }
  
  .tour-booking a {
    color: white;
    text-decoration: none;
    display: block;
    cursor: pointer;
  }
  
  .tour-booking a:hover {
    text-decoration: underline;
  }
  #calendly-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 425px; /* Increased width */
    height: 450px; /* Adjusted height to make it square */
    z-index: 100;
    display: none;
    overflow: auto;
  }
  #back-to-chatbot {
     position: relative;
    top: 30px;
    right: -280px;
    z-index: 105;
    background-color: orange;
    color: black;
    border: 1px solid #dddddd;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
  }
  
  
  #NSSHfWptfupkUZRjpAgR_1719878735200 {
    width: 100%; /* Make iframe take full width of the container */
    height: 100%; /* Make iframe take full height of the container */
    border: none;
    overflow: hidden;
  }
  
  /* Your existing CSS here */
  
  @media screen and (max-width: 768px) {
    #calendly-widget-container {
      width: 100%; /* Full width for small screens */
      height: 100%; /* Full height for small screens */
    }
  }