/* Reset + Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: sans-serif;
    background: #fff;
  }
  
  .background {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }
  
  .blur-circle {
    position: fixed;
    top: 130%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-color: rgba(45, 168, 143, 1);
    filter: blur(302px);
    border-radius: 50%;
    z-index: 2;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    z-index: 3;
    position: relative;
  }
  
  .logo-wrapper {
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }
  
  .main-logo {
    width: 200px;
    height: auto;
  }
  
  /* Chat Section */
  .agent-chat {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
     /* min-width: 100%; */
          min-height: calc(100vh - 131px);
          /* flex-direction: column; */
          overflow: hidden;
          position: relative;
          z-index: 99999999999;
          margin-top: auto;
          justify-content: end;
  }
  
  .agent-left, .agent-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .agent-left{
      justify-content: center;
  }
  
  .branding-logo {
    width: 282px;
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
  }
  
  .gray-text {
    color: #8e8e8e;
    font-size: 16px;
    font-weight: 500;
  }
  
  .waveform {
    width: 250px;
    max-width: 350px;
    height: auto;
    min-height: 50px;
  }
  
  .call-icon-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  
  .outer-circle {
    width: 110px;
    height: 110px;
    background: rgba(29, 31, 31, 0.69);
    border-radius: 50%;
    position: relative;
  }
  
  .inner-circle {
    width: 110px;
    height: 110px;
    background: rgba(22, 154, 134, 1);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .star {
    width: 44px;
    height: 44px;
  }
  
  .call-btn {
    width: 50px;
    height: 50px;
    background: rgba(22, 163, 74, 1);
    border: 1px solid rgba(52, 211, 153, 1);
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  .call-btn img {
    width: 20px;
    height: 20px;
  }
  
  .powered-by {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
    color: #000;
    font-weight: 300;
  }
  
  .powered-by img {
    width: 36px;
    height: auto;
  }
  
  .disclaimer {
    font-size: 12px;
    text-align: center;
    font-weight: 400;
    color: rgba(74, 74, 74, 1);
    margin-top: 10px;
  }
  
  .agent-right {
    justify-content: flex-end;
    align-items: center;
  }
  
  .agent-image {
    width: 80%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
  }
  
  /* Media Queries */
  @media (min-width: 768px) {
    .agent-left, .agent-right {
      flex: 1 1 50%;
    }
  
    .main-logo {
      width: 150px;
    }
  
    .agent-image {
      max-width: 65%;
    }
  }
  
  @media (min-width: 1200px) {
    .main-logo {
      width: 200px;
    }
  
    .agent-image {
      max-width: 70%;
    }
  }
  