    
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
body {
   font-family: "Plus Jakarta Sans", sans-serif;
   padding-top: 120px;
}
header {
    border-bottom: 1px solid #cececece;
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 10000;
}
.logo svg {
    width: 200px;
    height: 40px;
}
.accordion-item {
    box-shadow: 2px 3px 6px #99999951;
    margin: 16px 0px;
    border-radius: 12px!important;
    overflow: hidden;
}
.step-card {
    padding: 40px!important;
    border-radius: 16px;
    border: 2px solid #000!important;
    position: relative;
    text-align: left;
    font-size: 20px;
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.step-number {
    font-size: 3vw;
    position: absolute;
    right: 20px;
    line-height: 1;
    font-weight: 500;
    opacity: .4;
    bottom: 20px;
}
.step-card svg {
    height: 80px;
    width: fit-content;
}
h2 {
    font-size: 3rem;
    font-weight: 700;
}
.diff-sec {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 10px solid #cecece51;
    box-shadow: 2px 20px 16px 12px #d1d1d170;
    margin-top: 60px;
}
.diff-sec-main span {
    font-size: 30px;
    display: block;
    color: #cecece;
    font-style: italic;
}
.before.bf-btn {
    background: #fff;
    width: fit-content;
    padding: 20px;
    position: absolute;
    z-index: 100;
    top: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 30px;
    color: #000;
    border-color: #fff;
    border-radius: 12px;
}
.after.bf-btn {
    background: #05AC7C;
    width: fit-content;
    padding: 20px;
    position: absolute;
    z-index: 100;
    top: 30px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 30px;
    color: #fff;
    border-color: #fff;
    border-radius: 12px;
}
figure {
  margin: 0px;
}
.file-input-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 30px;
    border: 2px dashed;
    padding: 40px;
    width: 80%;
    border-radius: 20px;
}
section#howtouse p {
    max-width: 80%;
    margin: 0px auto 30px auto;
    text-align: center;
    line-height: 30px;
}
    .file-input-wrapper input[type="file"] {
      display: none;
    }

.custom-file-button strong {
    background-color: #007bff;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 30px 0px;
}
#previewImage {
    max-width: 50%;
    border-radius: 10px;
    display: none;
    margin: 40px auto 0px auto;
    border: 10px solid #cecececf;
    box-shadow: 2px 20px 16px 12px #d1d1d170;
}
    #loader {
      display: none;
      margin-top: 20px;
      font-size: 18px;
    }

    .spinner {
      margin: 10px auto;
      width: 40px;
      height: 40px;
      border: 4px solid #f3f3f3;
      border-top: 4px solid #007bff;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .blinking {
      animation: blink 1s infinite;
    }
.terms-sec {
    width: 100%;
    padding: 0px 0px 60px 0px;
}
.terms-sec h2 {
    font-size: 1.8rem!important;
    margin: 30px 0px!important;
    font-weight: 500!important;
}
    @keyframes blink {
      0% { opacity: 1; }
      50% { opacity: 0.4; }
      100% { opacity: 1; }
    }