:root {
  --primary-color: #727cf5;
  --secondary-color: #5b68fe;
  --surface-color: #fff;
  --curve: 40;
}

body {
  font-family: "Manrope" !important;
}

h1 {
  text-align: center;
  font-size: 24px;
  /* color: #c71048; Primary Color */
}
li {
  margin-bottom: 0;
}
#tabs {
  text-align: center;
}

.tabcontent {
  display: none;
  padding: 20px;
  font-family: "Manrope";
}

.output-message {
  margin-top: 10px;
  font-weight: bold;
}

input[type="text"],
input[type="range"],
input[type="file"],
select,
button,
label,
.checkbox-label {
  margin: 10px 0;
  display: block;
}

select {
  width: 100%;
}

audio {
  display: block;
  margin-top: 20px;
  width: 100%;
}

/* Display tabs horizontally */
.row {
  display: flex;
  justify-content: space-around;
}

/* Style range value preview */
input[type="range"] + .range-value {
  font-size: 14px;
  margin-left: 10px;
}

/* Add a little spacing between range input and value preview */
input[type="range"] + .range-value:before {
  content: " ";
  margin-right: 5px;
}

.range-container {
  position: relative;
}

.range-bar {
  width: 100%;
}

.range-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #c71048;
  border-radius: 50%;
  cursor: pointer;
}

.range-value {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background: #c71048;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  display: none;
}

.range-bar:focus + .range-value {
  display: block;
}

/* Style for the input field */
.input-label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.input-field {
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  /* border: none; */
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.input-field:focus {
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
    rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  transition: all 0.2s;
}

/* Style for the hint */
.input-field::placeholder {
  color: #888;
}

/* -------------------------- */
/* ------- tabs css --------- */

.unstyledList,
.tabBlock-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tabBlock {
  margin: 0 0 2.5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  padding-bottom: 3rem;
}

.tabBlock-tab {
  font-size: 150%;
  background-color: #fff;
  border-color: #d8d8d8;
  border-left-style: solid;
  border-top: solid;
  border-width: 2px;
  color: var(--primary-color);
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  padding: 1.625rem 1.25rem;
  position: relative;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
@media screen and (max-width: 640px) {
  .tabBlock-tab {
    font-size: 100%;
    padding: 1rem;
  }
}
.tabBlock-tab:last-of-type {
  border-right-style: solid;
}
.tabBlock-tab::before,
.tabBlock-tab::after {
  content: "";
  display: block;
  height: 4px;
  position: absolute;
  -webkit-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
.tabBlock-tab::before {
  background-color: var(--primary-color);
  left: -2px;
  right: -2px;
  top: -2px;
}
.tabBlock-tab::after {
  background-color: transparent;
  bottom: -2px;
  left: 0;
  right: 0;
}


@media screen and (min-width: 700px) {
  .tabBlock-tab {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.tabBlock-tab.is-active {
  position: relative;
  color: var(--secondary-color);
  z-index: 1;
}
.tabBlock-tab.is-active::before {
  /* background-color: var(--primary-color); */
  background-color: var(--secondary-color);
}
.tabBlock-tab.is-active::after {
  background-color: #fff;
}

.tabBlock-content {
  background-color: #fff;
  border-top: 2px solid #d8d8d8;
  padding: 2.25rem;
  height: 24rem;
}

.tabBlock-pane > :last-child {
  margin-bottom: 0;
}


/* -------------------------- */
/* ------- footer css --------- */
.footer {
  /* position: fixed;
  bottom: 0;
  left: 0;
  right: 0; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  padding: 1.5rem 4rem;
  font-size: 1rem;
  background-color: #f4f4ff;
  /* color: white; */
  font-family: 'Manrope';
  letter-spacing: 1px;
}

@media screen and (max-width: 440px) {
  .footer {
          font-size: .7rem;
  }
}

@media screen and (max-width: 740px) {
  .footer {
          flex-direction: column;
  }

  .footer div {
          margin-bottom: 1rem;
  }
}

/* -------------------------- */
/* ------- drag & drop css --------- */

#drop-area {
  border: 3px dashed #aaa;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.1s ease;
  display: block;
  justify-content: center;
  align-items: center;
  background-color: #e2e2e247;
}

#drop-area.dragged-over {
  border-color: #555;
  transition: all 0.2s;
}

#audioFile {
  display: none;
  color: var(--primary-color);
}
.label {
  cursor: pointer;
  background-color: var(--primary-color);
  color: #fff;
  padding: 1.3rem 3.5rem;
  transition: background-color 0.3s ease;
  font-size: large;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
@media screen and (max-width: 440px) {
  .label {
    font-size: smaller;
    padding: 1rem 3rem;
  }
}
var .label:hover {
  background-color: #5d6bfe;
}

#file-list {
  margin-top: 20px;
}
#uploadAudioBtn {
  display: none;
}

.file-item {
  margin-bottom: 10px;
}

/* ----------------------- */
/* ----- accordions ------*/

.accordion-button {
  font-weight: 700;
  font-size: 1.2rem !important;
  padding: 1.7rem !important;
}
@media screen and (max-width: 640px) {
  .accordion-button {
    font-size: 1rem !important;
    padding: 1rem !important;
  }
}

.accordion {
  font-family: "Manrope";
}
.accordion-button:focus {
  outline: none !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: none !important;
}
/* ----------------------- */
/* ----- loader css ------*/

.main-options {
  padding: 3rem;
  border-radius: 0.3rem;
  margin: 2rem 0rem;
}
@media screen and (max-width: 540px) {
  .main-options {
    /* font-size: 100%; */
    padding: 1rem;
  }
}

#loader-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100; /* Adjust the z-index to bring it above the backdrop */
}

.mesh-loader {
  display: none;
  text-align: center;
  overflow: hidden;
  z-index: 7; /* Set a higher z-index than the backdrop */
  height: inherit;
  width: inherit;
}

.mesh-loader .circle {
  width: 30px;
  height: 30px;
  position: absolute;
  background: var(--primary-color);
  border-radius: 50%;
  margin: -15px;
  -webkit-animation: mesh 3s ease-in-out infinite -1.5s;
  animation: mesh 3s ease-in-out infinite -1.5s;
}

.mesh-loader > div .circle:last-child {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.mesh-loader > div {
  position: absolute;
  top: 50%;
  left: 50%;
}

.mesh-loader > div:last-child {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@-webkit-keyframes mesh {
  0% {
    -webkit-transform-origin: 50% -100%;
    transform-origin: 50% -100%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform-origin: 50% -100%;
    transform-origin: 50% -100%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  50.1% {
    -webkit-transform-origin: 50% 200%;
    transform-origin: 50% 200%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform-origin: 50% 200%;
    transform-origin: 50% 200%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes mesh {
  0% {
    -webkit-transform-origin: 50% -100%;
    transform-origin: 50% -100%;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  50% {
    -webkit-transform-origin: 50% -100%;
    transform-origin: 50% -100%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  50.1% {
    -webkit-transform-origin: 50% 200%;
    transform-origin: 50% 200%;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform-origin: 50% 200%;
    transform-origin: 50% 200%;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* ----------------------- */
/* ----- navbar css ------*/

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.container {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.navbar {
  /* box-shadow: 0px 1px 3px 0px #aaa; */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: fixed;
  width: 100%;
  background: #fff;
  color: #000;
  opacity: 0.85;
  z-index: 100;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  height: 64px;
  align-items: center;
}

.menu-items {
  order: 2;
  display: flex;
  margin-bottom: 0;
  margin-right: 1rem;
}
.logo {
  order: 1;
  font-size: 2.3rem;
}

.menu-items li {
  list-style: none;
  margin-left: 2.5rem;
  font-size: 1.1rem;
}

.navbar a {
  font-size: 1.1rem;
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navbar a:hover {
  color: #5d6bfe;
}

@media (max-width: 768px) {
  .navbar {
    opacity: 0.95;
  }

  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    position: relative;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    left: 20px;
    z-index: 5;
    opacity: 0;
    cursor: pointer;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 28px;
    width: 35px;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #333;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.3s ease-in-out;
  }

  .navbar .menu-items {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    height: 100vh;
    transform: translate(-150%);
    display: flex;
    flex-direction: column;
    margin-left: -40px;
    padding: 7rem;
    transition: transform 0.5s ease-in-out;
    box-shadow: 5px 0px 10px 0px #aaa;
  }

  .navbar .menu-items li {
    margin-bottom: 1.8rem;
    font-size: 1.1rem;
    font-weight: 500;
  }

  .logo {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(45deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-45deg);
  }
}

@media (max-width: 500px) {
  .navbar-container input[type="checkbox"]:checked ~ .logo {
    display: none;
  }
}

/* ----------------------- */
/* ----- hero section css ------*/

.hero-section {
  background-image: linear-gradient(to right, #ffffff00, #727df5d9);
}

.hero-image{
    /* clip-path: circle(50% at 50% 50%); */
}

.main-heading {
  font-weight: 900;
  font-size: 3.6rem;
  color: #383838;
  letter-spacing: -3px;
  line-height: 4rem;
  text-align: left;
  margin-left: 3rem;
  /* margin-bottom: 2rem; */
}
.filled-button {
  background-image: linear-gradient(
    to right,
    var(--primary-color) 0%,
    var(--secondary-color) 51%,
    #26a0da 100%
  );
  margin: 10px;
  text-decoration: none;
  padding: 15px 45px;
  text-align: center;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  border-radius: 10px;
  display: block;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.filled-button:hover {
  background-position: right center; /* change the direction of the change here */
  color: #fff;
  text-decoration: none;
}

.logo {
  font-weight: 700;
}

.logo span {
  color: var(--primary-color);
}

/* ----------------------- */
/* ----- hero section css ------*/

.my-card {
  position: relative;
  display: block;
  height: 100%;
  border-radius: calc(var(--curve) * 1px);
  overflow: hidden;
  text-decoration: none;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  transition: all .4s;
}
.my-card:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.card__image {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.card__overlay {
  border-radius: calc(var(--curve) * 1px);
  background-color: var(--surface-color);
  height: 0;
  transition: 0.2s ease-in-out;
}

.card__header {
  position: relative;
  z-index: 0;
  align-items: center;
  padding: 1.1em 2em;
  border-radius: calc(var(--curve) * 1px) 0 0 0;
  background-color: var(--surface-color);
  transform: translateY(-100%);
  transition: 0.2s ease-in-out;
}

.card__arc {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 1;
}

.card__arc path {
  fill: var(--surface-color);
  d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}

.card__title {
  font-size: 1em;
  margin: 0 0 0.3em;
  color: #6a515e;
  font-weight: bold;
}

.card__tagline {
  display: block;
  margin: 1em 0;
  font-size: 0.8em;
  color: #d7bdca;
}

.card__status {
  font-size: 0.8em;
  display: flex;
  color: #8d8187;
  align-items: center;
}

.model-image {
    width: 13rem;
    height: 13rem;
    object-fit: cover;
}

.tag {
    border-radius: 1rem;
    background-color: #dde0ff;
    color: #727cf5;
    font-weight: bold;
    padding: 5px 1rem;
    text-decoration: none;
}

.search-input {
    outline: none;
    background-color: transparent;
    border: none;
}

.search-input::placeholder {
    color: #99999973;
}

.search-div {
    background-color: #ffffff8a;
    border-radius: 1rem;
    padding: 1.2rem 0.9rem;
    width: 97%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
