/*-----------------------
    Fonts
-------------------------*/
@font-face {
  font-family: "OutfitRegular";
  src: url("../fonts/OutfitRegular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "OutfitBold";
  src: url("../fonts/OutfitBold.ttf");
  font-weight: normal;
  font-style: normal;
}
/*-----------------------
    :root
-------------------------*/
:root {
  --body-bg: #4693e0;
}

/*-----------------------
    Global Style
-------------------------*/
.scrollby-body {
  overflow-x: unset !important;
  overflow: unset !important;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

::selection {
  background: #000;
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #bbbdc1;
  border-radius: 120px;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
  scroll-behavior: initial;
  overflow-x: hidden !important;
}

html[dir="ltr"] body {
  font-family: "OutfitRegular";
}
html[dir="ltr"] .chat__card .card-header h3 {
  font-family: "OutfitBold";
}

body {
  color: #000000;
  font-size: 16px;
  vertical-align: baseline;
  overflow-x: hidden !important;
  font-weight: 400;
  font-style: normal;
  padding-right: 0 !important;
  background: var(--body-bg);
}

ol,
ul {
  list-style: none;
}

figure,
ol,
p,
ul {
  margin: 0;
  padding: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  text-rendering: optimizelegibility;
  margin-top: 0;
  margin-bottom: 0;
}

a {
  cursor: pointer;
  text-decoration: unset;
}

/*-----------------------
    chat__card
-------------------------*/
@media (min-width: 1210px) {
  .main__img__ai img {
    position: fixed;
    bottom: 0;
    height: 100vh;
  }
}

.chat__card {
  box-shadow: -1px 0px 25px -1px rgba(0, 0, 0, 0.2509803922);
  border-radius: 16px;
  margin: auto;
  border: 1px solid #fff;
}
.chat__card .card-header {
  padding-block: 16px;
  padding-inline: 16px;
  border-bottom: 1px solid #e5e6e7;
}
.chat__card .card-header h3 {
  font-size: 20px;
}
.chat__card .card-body {
  padding: 8px 16px;
  overflow-y: auto;
  height: calc(100vh - 249px);
  display: flex;
  flex-direction: column;
}
.chat__card .card-body .chat__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.chat__card .card-body .chat-bubble {
  font-size: 14px;
  line-height: 18px;
  min-height: 46px;
  padding-block: 16px;
  padding-inline: 16px;
  direction: ltr;
  text-align: left;
}
.chat__card .card-body .chat-bubble.chat-robot {
  background: #f3f3f3;
  color: #1e1e1e;
  border-radius: 10px 10px 0 10px;
}
.chat__card .card-body .chat-bubble.chat-human {
  background: #4693e0;
  border-radius: 10px;
  color: #f9faf8;
}
.chat__card .card-footer {
  padding: 8px 16px;
  border-top: 1px solid #e5e6e7;
}
.chat__card .card-footer .input-group {
  min-height: 45px;
}
.chat__card .card-footer .input-group input {
  width: calc(100% - 60px);
  outline: 0 !important;
  background: transparent !important;
  box-shadow: unset !important;
  padding: 0;
  padding-inline-end: 16px;
}
.chat__card .card-footer .input-group input::-moz-placeholder {
  font-size: 14px;
  color: #838789;
}
.chat__card .card-footer .input-group input::placeholder {
  font-size: 14px;
  color: #838789;
}
.chat__card .card-footer .input-group .btn {
  width: 30px;
  min-width: 30px;
  max-width: 40px;
  height: 30px;
  background: #4693e087;
  border-radius: 10px !important;
}
.chat__card .card-footer .input-group .btn svg {
  height: 13px;
  width: 13px;
}

.image__card {
  box-shadow: -1px 0px 25px -1px rgba(0, 0, 0, 0.2509803922);
  border-radius: 16px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.image__card svg {
  color: #797596;
}
.image__card .card-header {
  padding-block: 16px;
  padding-inline: 16px;
  border-bottom: 1px solid #e5e6e7;
}
.image__card .card-header h3 {
  font-size: 20px;
}
.image__card .card-body {
  height: 426px;
}
.image__card .card-body img {
  -o-object-fit: cover;
  object-fit: cover;
}

.video__card {
  box-shadow: -1px 0px 25px -1px rgba(0, 0, 0, 0.2509803922);
  border-radius: 16px;
  margin: auto;
}
.video__card .card-header {
  padding-block: 16px;
  padding-inline: 16px;
  border-bottom: 1px solid #e5e6e7;
}
.video__card .card-header h3 {
  font-size: 20px;
}
.video__card .card-body {
  height: calc(100vh - 250px);
}
.video__card .card-body img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.video__card .card-body .video-container,
.video__card .card-body .iframe-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
}
.video__card .card-body video,
.video__card .card-body iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.container-login100 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-wrap: wrap;
}

.login100-more {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 1;
}
@media (min-width: 769px) {
  .login100-more {
    width: calc(100% - 520px);
  }
}
@media (max-width: 768.98px) {
  .login100-more {
    width: 100%;
    height: 400px;
    padding-top: 150px;
  }
}

.login100-more-mic-off {
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: breathe 3s ease-in-out infinite;
}

.login100-more-mic-off:hover {
  transform: scale(1.1);
  animation: none;
}

.login100-more-mic-off:active {
  transform: scale(0.95);
}

.login100-more-mic-off video {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(70, 147, 224, 0.7);
}

.login100-more-mic-off img {
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* Breathing animation for idle state */
@keyframes breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Pulse animation for listening state */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(70, 147, 224, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(70, 147, 224, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(70, 147, 224, 0);
  }
}

/* Listening state animations */
.login100-more-mic-off.listening {
  animation: none;
}

.login100-more-mic-off.listening video {
  animation: pulse 2s infinite;
  box-shadow: 0 0 20px rgba(70, 147, 224, 0.6);
}

/* Ripple effect on click */
.login100-more-mic-off::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(70, 147, 224, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

.login100-more-mic-off.clicked::after {
  width: 120px;
  height: 120px;
  opacity: 0;
}

/* Smooth rotation for mic icon */
.login100-more-mic-off img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.login100-more-mic-off:hover img {
  transform: rotate(5deg);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

/* Loading state animation */
.login100-more-mic-off.loading {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Error state animation */
.login100-more-mic-off.error {
  animation: shake 0.5s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

.wrap-login100 {
  min-height: 100vh;
  border-radius: 2px;
  position: relative;
}
@media (min-width: 769px) {
  .wrap-login100 {
    width: 520px;
  }
}
@media (max-width: 768.98px) {
  .wrap-login100 {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .fixed-lg-top {
    position: fixed;
    right: 0;
    left: 0;
  }
  .p-r-50 {
    padding-right: 50px;
  }
  .p-l-50 {
    padding-left: 50px;
  }
  .p-b-50 {
    padding-bottom: 50px;
  }
  .p-t-72 {
    padding-top: 72px;
  }
}

/*-----------------------
    Navbar & Logo Styles
-------------------------*/
.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: auto;
  width: auto;
  z-index: 1000;
  background: transparent;
  padding: 10px 20px !important;
}

@media (max-width: 768px) {
  .navbar {
    padding: 8px 15px !important;
  }
}

/*-----------------------
    Typing Indicator
-------------------------*/
.typing-dots {
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-dots span {
  width: 6px;
  height: 6px;
  background-color: #f9faf8;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
  animation-delay: 0s;
}

.typing-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  30% {
    transform: scale(1.2);
    opacity: 1;
  }
}

/*-----------------------
    Avatar Video Styles
-------------------------*/
#avatarContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: absolute; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 120px;
  z-index: 2;
  border-radius: 15px;
}

#avatarVideo,
#fallbackImage {
  width: 100% !important;
  height: 106vh !important;
}
@media (min-height: 1900px) and (min-width: 1200px) {
  #avatarVideo {
    width: auto !important;
    height: 71vh !important;
    margin: 0 -180px;
  }
  .image__card {
    position: absolute;
    top: 20%;
    left: 40%;
  }
}
@media (max-width: 768px) {
  #avatarContainer {
    width: 350px;
    height: 250px;
  }
}
@media (min-height: 1000px) and (max-width: 1200px) {
  .logo-img {
    width: 165px;
  }
}

/*-----------------------
    Popup Styles
-------------------------*/
.popup-content {
  width: 802px;
  height: 341.1853942871094px;
  gap: 32px;
  opacity: 1;
  border-radius: 12px;
  padding-top: 48px;
  padding-right: 64px;
  padding-bottom: 48px;
  padding-left: 64px;
}

.popup-content h2 {
  font-family: Outfit;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  text-align: center;
}

.popup-content p {
  font-family: Outfit;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
}

#startSessionBtn {
  width: 250px;
  height: 42px;
  gap: 6px;
  opacity: 1;
  border-radius: 100px;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-family: Outfit;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0%;
}

/*-----------------------
    Refresh Button & Modal
-------------------------*/
.btn-refresh {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px;
    gap: 10px;
    position: absolute;
    width: 64px;
    height: 64px;
    right: 40px;
    top: 40px;
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid #FFFFFF;
    backdrop-filter: blur(2px);
    border-radius: 20px;
    z-index: 10;
}

.btn-refresh img {
    width: 32px;
    height: 32px;
}

#refreshModal .modal-content {
    border-radius: 16px;
    border: none;
}

#refreshModal .modal-body {
    padding: 40px;
}

#refreshModal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
}

#refreshModal .refresh-icon {
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

#refreshModal p {
    font-size: 18px;
    margin-bottom: 20px;
}

#refreshModal .btn-dark {
    background-color: #000;
    border-color: #000;
    border-radius: 20px;
    padding: 10px 30px;
}

.refresh-modal-text {
    font-family: Outfit;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
}

.refresh-modal-button {
    font-family: Outfit;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
}


/*# sourceMappingURL=style.css.map */
