
/* Floating Chat Section  */

  body {
    margin: 0;
    background-color: #05254b;
    height: 100vh;
  }

  /* Floating Chat Container - Left Side */
  .floating-chat {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Chat toggle icon */
  .chat-toggle {
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .chat-toggle:hover {
    transform: scale(1.1);
  }

  /* Chat options hidden initially */
  .chat-options {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    animation: fadeInUp 0.35s ease;
  }

  /* Customizable sizes: Adjust --btn-size for button dimensions, --main-svg-size for main toggle SVG, --icon-svg-size for phone/WhatsApp/close SVGs */
  :root {
    --btn-size: 50px; /* Change this to adjust all button widths/heights */
    --main-svg-size: 50px; /* Change this to adjust main message icon SVG size */
    --icon-svg-size: 32px; /* Change this to adjust phone, WhatsApp, and close icon SVG sizes */
  }

  .chat-btn {
    width: var(--btn-size);
    height: var(--btn-size);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  /* Main toggle SVG size */
  #chatToggle .chat-btn svg {
    width: var(--main-svg-size);
    height: var(--main-svg-size);
  }

  /* Icon SVGs size (phone, WhatsApp, close) */
  #chatOptions .chat-btn svg {
    width: var(--icon-svg-size);
    height: var(--icon-svg-size);
  }

  .chat-btn:hover {
    transform: scale(1.1);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .chaty-sts3-0 {
    fill: #ffffff;
  }

  /* Floating Chat Section End */