@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@100;200;300;400;500;600;700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Mono", monospace;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: fit-content;
  font-weight: bold;
  font-family: monospace;
  font-size: 30px;
  background:linear-gradient(90deg,#000 50%,#0000 0) right/200% 100%;
  animation: l21 2s infinite linear;
}
.loader::before {
  content :"Loading...";
  color: #0000;
  padding: 0 5px;
  background: inherit;
  background-image: linear-gradient(90deg,#fff 50%,#000 0);
  -webkit-background-clip:text;
          background-clip:text;
}

@keyframes l21{
  100%{background-position: left}
}

#resume-upload-message {
  margin-top: 10px;
  color: green; /* Change color for success, red for errors */
}

.upload-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Take full width */
  padding: 20px; /* Add padding for spacing */
  box-sizing: border-box; /* Include padding in element width */
}

.card {
  border-radius: 10px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  width: 90%; /* Use percentage width, max-width for larger screens */
  max-width: 600px; 
  background-color: #ffffff;
  padding: 20px; /* Increased padding for better spacing */
  box-sizing: border-box; /* Include padding */
}

.drop_box {
  margin: 20px 0; /* Increased margin */
  padding: 20px;  /* Increased padding */
  border: 3px dotted #a3a3a3;
  border-radius: 5px;
  text-align: center; /* Center text */
}

.drop_box h4 {
  font-size: 1.2em; /* Relative font size */
  margin-bottom: 10px;
}

.drop_box p {
  font-size: 0.9em;
  margin-bottom: 20px;
}


.btn-upload {
  display: inline-block;  /* Makes buttons behave better on smaller screens */
  padding: 10px 20px;
  margin: 10px;  /* added margin for spacing */
  font-size: 1em;
  background-color: #005af0;
  color: #ffffff;
  border: none;
  outline: none;
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer; /* Added cursor for clarity */
}


/* Media Queries for different screen sizes */
@media (max-width: 768px) { /* Adjust breakpoint as needed */
  .card {
    width: 95%; /* Increase width for smaller screens */
  }
  .btn-upload {
      font-size: 0.9em;
      padding: 8px 16px;
  }
}

@media (max-width: 480px) { /* Adjust breakpoint as needed */
  .card {
    width: 98%;
  }
   .drop_box h4 {
      font-size: 1em; 
    }
    .drop_box p {
        font-size: 0.8em;
      }
}

.btn-upload:hover{
  text-decoration: none;
  background-color: #ffffff;
  color: #005af0;
  padding: 10px 20px;
  border: none;
  outline: 1px solid #010101;
}
.form input {
  margin: 10px 0;
  width: 100%;
  background-color: #e2e2e2;
  border: none;
  outline: none;
  padding: 12px 20px;
  border-radius: 4px;
}

.main {
  min-height: 100vh;
  position: relative;
  overflow-y: auto;
  width: 100%;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main .image-container {
  padding: 10px;
}

.main .image-container .image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main .image-container .image img {
  width: 170px;
  align-items: center;
}

.main .image-container h1 {
  color: #f8f9fa;
  text-align: center;
  margin-bottom: 10px;
  font-size: 40px;
}

.main .image-container p {
  color: #324042;
  text-align: center;
  margin-bottom: 40px;
}

.main .input {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 30vw;
  height: 50px;
  border-radius: 20px;
  background: rgb(202 253 255 / 50%); */
}

.main .input .talk {
  background: transparent;
  outline: none;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  cursor: pointer;
}

.main .input .talk i {
  font-size: 20px;
  color: #aed0d0;
  margin-left: -100px;
  margin-top: -25px;
}

.main .input .content {
  color: #aed0d0;
  font-size: 15px;
  margin-right: -10px;
}

.fa_custom {
  color:
    #020202
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 120px;
  background: #27282c;
}

.button {
    position: relative;
    padding: 0px 20px;
    font-size: 1.5rem;
    color: #f8f9fa;
    border: 2px solid #000;
    border-radius: 2px;
    text-shadow: 0 0 15px #007bff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: 0.5s;
    z-index: 1;
  
}

.button:hover {
    color: #fff;
    border: 2px solid rgba(0, 0, 0, 0);
    box-shadow: 0 0 0px var(--color);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color);
  z-index: -1;
  transform: scale(0);
  transition: 0.5s;
}

.button:hover::before {
  transform: scale(1);
  transition-delay: 0.5s;
  box-shadow: 0 0 10px var(--color),
    0 0 30px var(--color),
    0 0 60px var(--color);
}

.button span {
  position: absolute;
  background: var(--color);
  pointer-events: none;
  border-radius: 2px;
  box-shadow: 0 0 10px var(--color),
    0 0 20px var(--color),
    0 0 30px var(--color),
    0 0 50px var(--color),
    0 0 100px var(--color);
  transition: 0.5s ease-in-out;
  transition-delay: 0.25s;
}

.button:hover span {
  opacity: 0;
  transition-delay: 0s;
}

.button span:nth-child(1),
.button span:nth-child(3) {
  width: 40px;
  height: 4px;
}

.button:hover span:nth-child(1),
.button:hover span:nth-child(3) {
  transform: translateX(0);
}

.button span:nth-child(2),
.button span:nth-child(4) {
  width: 4px;
  height: 40px;
}

.button:hover span:nth-child(1),
.button:hover span:nth-child(3) {
  transform: translateY(0);
}

.button span:nth-child(1) {
  top: calc(50% - 2px);
  left: -50px;
  transform-origin: left;
}

.button:hover span:nth-child(1) {
  left: 50%;
}

.button span:nth-child(3) {
  top: calc(50% - 2px);
  right: -50px;
  transform-origin: right;
}

.button:hover span:nth-child(3) {
  right: 50%;
}

.button span:nth-child(2) {
  left: calc(50% - 2px);
  top: -50px;
  transform-origin: top;
}

.button:hover span:nth-child(2) {
  top: 50%;
}

.button span:nth-child(4) {
  left: calc(50% - 2px);
  bottom: -50px;
  transform-origin: bottom;
}

.button:hover span:nth-child(4) {
  bottom: 50%;
}


* {
  box-sizing: border-box;
}

body {
  background: #212223;
  font-family: Roboto;
  color: #efdefe;
  overflow-y: scroll;
}

h3 {
  line-height: 0rem;
}




/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  padding: 10px 40px;
  background-color: #11171c;
  color: white;
  font-size: 17px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-family: 'Font Awesome 6 Free';
}

.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  z-index: 9;
  max-width: 400px;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  border-radius: 20px;
  background-color: white;
  color: #777;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  border-radius: 20px;
  background: #ddd;
  resize: none;
  min-height: 200px;
  color: #777;
}

/* When the textarea gets focus, do something */
.form-container textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  font-size: 17px;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 10px;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
  background-color: #1974D2;
}

/* Add some hover effects to buttons */
.form-container .btn:hover,
.open-button:hover {
  opacity: 0.8;
}

@keyframes quiet {
  25% {
    transform: scaleY(.6);
  }

  50% {
    transform: scaleY(.4);
  }

  75% {
    transform: scaleY(.8);
  }
}

@keyframes normal {
  25% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(.4);
  }

  75% {
    transform: scaleY(.6);
  }
}

@keyframes loud {
  25% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(.4);
  }

  75% {
    transform: scaleY(1.2);
  }
}

body {
  display: flex;
  justify-content: center;
  background: black;
  margin: 0;
  padding: 0;
  align-items: center;
  /* height: 100vh; */
  height: 100%;
  overflow: hidden;
  position: relative;
}

.boxContainer {
  display: flex;
  justify-content: space-between;
  height: 64px;
  --boxSize: 8px;
  --gutter: 4px;
  width: calc((var(--boxSize) + var(--gutter)) * 5);
}

.box {
  transform: scaleY(.4);
  height: 100%;
  width: var(--boxSize);
  background: #12E2DC;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  border-radius: 8px;
}

.box1 {
  animation-name: quiet;
}

.box2 {
  animation-name: normal;
}

.box3 {
  animation-name: quiet;
}

.box4 {
  animation-name: loud;
}

.box5 {
  animation-name: quiet;
}

body {
  background: #000;
}

#load {
  position: absolute;
  width: 400px;
  left: 50%;
  top: 40%;
  margin-left: -300px;
  margin-top: 240px;
  overflow: visible;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}

/* #load div {
  position: absolute;
  width: 20px;
  height: 36px;
  opacity: 0;
  font-family: Helvetica, Arial, sans-serif;
  animation: move 2s linear infinite;
  -o-animation: move 2s linear infinite;
  -moz-animation: move 2s linear infinite;
  -webkit-animation: move 2s linear infinite;
  transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  color: #35C4F0;
}

#load div:nth-child(2) {
  animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}

#load div:nth-child(3) {
  animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}

#load div:nth-child(4) {
  animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

#load div:nth-child(5) {
  animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}

#load div:nth-child(6) {
  animation-delay: 1s;
  -o-animation-delay: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
}

#load div:nth-child(7) {
  animation-delay: 1.2s;
  -o-animation-delay: 1.2s;
  -moz-animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}

@keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }

  35% {
    left: 41%;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    left: 59%;
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  100% {
    left: 100%;
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    opacity: 0;
  }
}

@-moz-keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }

  35% {
    left: 41%;
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    left: 59%;
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  100% {
    left: 100%;
    -moz-transform: rotate(-180deg);
    transform: rotate(-180deg);
    opacity: 0;
  }
}

@-webkit-keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }

  35% {
    left: 41%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    left: 59%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  100% {
    left: 100%;
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    opacity: 0;
  }
}

@-o-keyframes move {
  0% {
    left: 0;
    opacity: 0;
  }

  35% {
    left: 41%;
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  65% {
    left: 59%;
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
  }

  100% {
    left: 100%;
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    opacity: 0;
  }
} */

#refreshButton {
  position: fixed;
  padding: 0px;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  background-color: #000000;
  color: #fff;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  z-index: 999;
  outline:none;
}

#scrollButton {
  position: fixed;
  padding: 0px;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  background-color: #000000;
  color: #fff;
  text-align: center;
  line-height: 25px;
  cursor: pointer;
  z-index: 999;
  outline:none;
}


#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 615px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), radial-gradient(at top center, rgba(255, 255, 255, 0.40) 0%, rgba(0, 0, 0, 0.40) 120%) #989898;
  color: #fff;
  text-align: center;
  transition: height 0.3s ease;
  z-index: 998;
  overflow-y: auto;
  display: none;
  height: 100%;
  border: 5px solid royalblue;
}

#footer.visible {
  height: 0px;
  /* Set the desired height when visible */
}



* {
  box-sizing: border-box;
}

.wrapper {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
}

button {
  width: 200px;
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.button-box-special {
  background: #383b3a;
}

button:focus {
  outline: none;
}


.twenty-one {
  background: #fff;
  color: royalblue;
  border: 2px solid royalblue;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  transition: color 400ms;
}

.twenty-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: royalblue;
  z-index: -1;
  transition: transform 400ms ease-out;
  transform: scaleX(0);
  transform-origin: left;
}

.twenty-one:hover::before {
  transform: scaleX(1);
}

.twenty-one:hover {
  color: #fff;
}


.chat-message {
  margin: 10px 0;
}

.message-text {
  background-color: #f1f1f1;
  padding: 10px;
}

.response {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  color: white;
}
.chat_container {
  border: 5px solid royalblue;
  background-color: #000000;
  margin: 10px;
  border-radius: 20px;
  text-align: -webkit-match-parent;
  width: 95%;
}

.chat_img {
  vertical-align: middle;
  border-style: none;
  max-width: 4%;
}
