/*--------------------
Mixins
--------------------*/
/*--------------------
Body
--------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

#lookup-container {
  height: 200px; /* Initial height */
  transition: all 2s ease; /* Transition for all properties */
  overflow: hidden; /* Ensure content doesn't overflow during animation */
}

.slide-down {
  height: 200px !important; /* Initial height */
  transition: all 2s ease; /* Transition for all properties */
  overflow:auto; /* Ensure content doesn't overflow during animation */
}


.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: video;
  object-fit: contain;
  opacity: .2;
  z-index: -2; /* Ensure the video is behind everything */
}

.hero-container {
  content: '';
  width: 100%;
  background: linear-gradient(to bottom right, #012C38, #027966);
  opacity:1;
  mix-blend-mode: multiply;
  z-index: -1; /* Ensure the gradient is above the video but below other content */
}

.bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: url("https://images.unsplash.com/photo-1451186859696-371d9477be93?crop=entropy&fit=crop&fm=jpg&h=975&ixjsv=2.1.0&ixlib=rb-0.3.5&q=80&w=1925") no-repeat 0 0;
  filter: blur(80px);
  transform: scale(1.2);
}

/*--------------------
Chat
--------------------*/
.chat {
  position: absolute;
  top: 0;
  left:0;
  max-width: 800px;
  width: 100%;
  height: 100%;
  max-height: 800px;
  z-index: 2;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 1);
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}



/*--------------------
Messages
--------------------*/
.messages {
  flex: 1 1 auto;
  color: rgba(255, 255, 255, 0.8);
  overflow: scroll;
  position: relative;
/* padding-bottom:500px; */
  width: 100%;
}
.messages .messages-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 200%;
  width: 100%;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.messages .message {
  clear: both;
  float: left;
  padding:6px 10px;
  border-radius: 14px;
  background-color: #26252A;
  margin: 20px 100px 15px 70px;
  font-size: 18px;
  line-height: 1.4;
  position: relative;

  background: linear-gradient(to bottom, #035c59 0%, #027966 60%);
  /* text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); */
}



.messages .message a {
    color: #fee091;
}
.messages .message .timestamp {
  position: absolute;
  bottom: -28px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600; 
}
.messages .message::before {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0px;
  left: -7px;
  height: 28px;
  width: 20px;
  background: #26252A;
  border-bottom-right-radius: 15px;
  background: linear-gradient(to bottom, #035c59 -200%, #027966 100%);
 
}
.messages .message::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0px;
  left: -10px;
  width: 10px;
  height: 30px;
  background: black;
  border-bottom-right-radius: 10px;
}
.messages .message .avatar {
  position: absolute;
  z-index: 1;
  bottom: -15px;
  left: -60px;
  border-radius: 30px;
  width: 50px;
  height: 50px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.messages .message .avatar img {
  width: 100%;
  height: auto;
}
.messages .message.message-personal {
  float: right;
  color: #fff;
  text-align: right;
  margin: 20px 10px 20px 100px;
  z-index: 2;
  /* background: linear-gradient(120deg, #248A52, #257287); */
  /* background: linear-gradient(to bottom, #248A52 0%, #257287 100%); */
  background: linear-gradient(to bottom, #00afc6 0%, #0391d7 100%);
  border-radius: 30px;
}
.messages .message.message-personal::before {
  content: "";
  position: absolute;
  z-index: -1;
  

  bottom: 0;
    left: 94%;
    height: 25px;
    width: 40px;


  /* background: linear-gradient(to bottom, #248A52 -50%, #257287 100%); */
  background: linear-gradient(to bottom, #00afc6 -100%, #0391d7 100%);
  background-attachment: fixed;
  border-bottom-left-radius: 15px;
}

.messages .message.message-personal::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 100%;
  width: 30px;
  height: 25px;
  background: black;
  border-bottom-left-radius: 10px;
  }


.messages .message:last-child {
  margin-bottom: 100px;
}
.messages .message.new {
  transform: scale(0);
  transform-origin: 0 0;
  animation: bounce 700ms ease-out both; 
}
.messages .message.loading {
  padding: 10px 20px;
}
.messages .message.loading::before {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-30%, -30%);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  z-index: 2;
  margin-top: 4px;
  animation: ball 0.4s cubic-bezier(0, 0, 0.1, 1) alternate infinite;
  border: none;
  animation-delay: 0.15s;
}
.messages .message.loading span {
  display: block;
  font-size: 0;
  width: 36px;
  height: 24px;
  position: relative;
}
.messages .message.loading span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -30%);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  z-index: 2;
  margin-top: 4px;
  animation: ball 0.4s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: -7px;
}
.messages .message.loading span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30%, -30%);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  z-index: 2;
  margin-top: 4px;
  animation: ball 0.4s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
  margin-left: 7px;
  animation-delay: 0.3s;
}

/*--------------------
Message Box
--------------------*/
.message-box {
  flex: 0 1 40px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  position: relative;
}
.message-box .message-input {
  background: none;
  border: none;
  outline: none !important;
  resize: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  height: 36px;
  margin: 0;
  padding-right: 20px;
  width: 265px;
}
.message-box textarea:focus:-webkit-placeholder {
  color: transparent;
}
.message-box .message-submit {
  position: absolute;
  z-index: 1;
  top: 9px;
  right: 10px;
  color: #fff;
  border: none;
  background: #248A52;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  padding: 11px 24px;
  border-radius: 16px;
  outline: none !important;
  transition: background 0.2s ease;
}
.message-box .message-submit:hover {
  background: #1D7745;
}

/*--------------------
Custom Srollbar
--------------------*/
.mCSB_scrollTools {
  margin: 1px -3px 1px 0;
  opacity: 0;
}

.mCSB_inside > .mCSB_container {
  margin-right: -20px;
  padding: 0 10px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

/*--------------------
Bounce
--------------------*/
@keyframes bounce {
  0% {
    transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  4.7% {
    transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  9.41% {
    transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  14.11% {
    transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  18.72% {
    transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  24.32% {
    transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  29.93% {
    transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  35.54% {
    transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  41.04% {
    transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  52.15% {
    transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  63.26% {
    transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  85.49% {
    transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@keyframes ball {
  from {
    transform: translateY(0) scaleY(0.8);
  }
  to {
    transform: translateY(-8px);
  }
}
@keyframes floatUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px); /* Slight overshoot */
    opacity: 1;
  }
  80% {
    transform: translateY(5px); /* Bounce back */
  }
  100% {
    transform: translateY(0); /* Settle at final position */
  }
}

.float-up {
  animation: floatUp 1.5s ease-out forwards; /* 1s duration, ease-out timing function */
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in forwards;
}


/*# sourceMappingURL=style.css.map */
  /* Custom styles for animations */
  @keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes scaleDown {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(0.9);
        opacity: 0.8; /* Reduce opacity by 20% */
        filter: blur(10px);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0px);
    }
}

/* Apply animation to floating images */
.floating-image {
    animation: floatAnimation 4s ease-in-out infinite;
}

.scale-down {
    animation: scaleDown 4s ease-in-out infinite;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in forwards;
}

.hiddenChat {
  opacity: 0;
}

#hero {
  position: relative;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; /* Ensure the video is behind other content */
}

.messages .message {
  clear: both;
  float: left;
  padding: 10px 20px;
  border-radius: 30px;
  margin: 20px 40px 25px 70px;
  background-color: #26252A;
  font-size: 15px; /* Default font size */
  line-height: 1.4;
  position: relative;
  background: linear-gradient(to bottom, #035c59 0%, #027966 60%);
  /* text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); */
}


.item-1, 
.item-2, 
.item-3, .item-4, .item-5, .item-6, .item-7, .item-8, .item-9, .item-10, .item-11, .item-12, .item-13, .item-14, .item-15, .item-16, .item-17, .item-18, .item-19, .item-20, .item-21 {
	position: absolute;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 640px;
  font-size: 2em;
	animation-duration: 15s;
	animation-timing-function: ease-in-out;
  background: linear-gradient(to bottom, #035c59 0%, #027966 60%);
  border-radius: 50px;
  padding: 10px 20px;
  color: #fff;
	animation-iteration-count: infinite;
}




/* Media query for screens between 768px and 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .messages .message {
    font-size: 16px;
    margin: 20px 60px 15px 70px;
  }
}

/* Media query for screens 1024px and larger */
@media (min-width: 1024px) {
  .messages .message {
    font-size: 20px;
    margin: 20px 100px 15px 70px;
  }
}


.autocomplete-suggestions {
  background: #FFE6B3 !important;
  overflow: auto;
  max-height: 200px;
  border-radius: 20px;
  top:15px;
  position: relative;
}

.autocomplete-suggestion {
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  color: #000;
}

.autocomplete-selected {

  color: #000;
  background: #fff !important;
  border-radius: 20px;
}
