html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.use-page {
  width: 100vw;
  overflow-x: hidden;
  position: relative;
}

.use-page {
  font-family: 'Poppins', sans-serif;
  background-color: #0f0f0f;
  color: #ffffff;
  line-height: 1.6;
  margin-top: 160px;
}

.container {
  width: 95%;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-title {
  font-family: Sora, sans-serif;
  font-size: 35px;
  text-align: center;
  margin-bottom: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.5;
}

.hero-title .highlight {
  color: #9bbe2c;
}

.use-page::before {
    content: "";
    position: absolute;
    top: 12%;
    left: -250px;
    transform: translateY(-50%) rotate(5deg);
    width: 600px;
    height: 800px;
    background-image: url('../Media/Glob.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

.steps {
  width: 100%;
}

.steps-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1rem;
}

.steps-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1rem 0;
  outline: none;
}

.steps-item summary::-webkit-details-marker {
  display: none;
}

.steps-item .step-no {
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border: 1px solid #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  font-family: Sora, sans-serif;
  font-weight: 400;
  margin-right: 1rem;
}

    .steps-item .title-text {
        flex-grow: 1;
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
        letter-spacing: 1px;
        line-height: 28px;
    }

.steps-item .arrow {
  position: relative;
  width: 0.75rem;
  height: 0.75rem;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.steps-item .arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.steps-item[open] .arrow {
  transform: rotate(90deg);
}

.steps-item .content {
  max-width: 80%;
  margin-left: 50px;
}

    .steps-item .content p {
        font-family: Sora, sans-serif;
        font-size: 16px;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.5;
    }

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.step-container {
  position: relative;
  overflow: hidden;
}

.step-indicator {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  padding: 0 0.75rem;
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.step-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  z-index: 1;
}

.step-left {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
}

.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 28px;
}

.step-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: Sora, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.step-right {
  flex: 1;
  min-width: 200px;
  max-width: 430px;
  text-align: center;
}

.step-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.hero-title {
    font-size: 40px;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    margin: 10px 0;
    line-height: 1.4;
    letter-spacing: 1.4px;
    margin-bottom:2.4rem;
}

.hero-title .highlight {
  color: #9bbe2c;
}

.hero-title .line {
  display: block;
}

.step-img {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

    .step-img:hover {
        transform: perspective(600px) rotateY(-8deg) rotateX(4deg);
    }



.step-content {
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.hidden {
    opacity: 0;
    transform: translateY(40px);
}

.slide-in {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1300px) {
    .step-container,
    .steps {
        width: 85%;
        margin: 0 auto;
    }

  .step-content {
    gap: 0;
  }

  .step-text {
    font-size: 20px;
    line-height: 35px;
  }
}

@media (max-width: 900px) {
  .step-content {
    max-width: 700px;
  }

  .step-text {
    font-size: 18px;
    line-height: 30px;
  }

  .use-page::before {

    opacity: 0.4;
  }
}

@media (max-width: 750px) {
    .step-content {
        flex-direction: column;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.02);
        border-radius: 12px;
        padding: 1.2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        gap: 1rem;
    }
    .step-container{
        padding:1rem 0;
    }

    .step-right {
        max-width: 300px
    }

}

@media (max-width: 500px) {
    .use-page {
        margin-top: 111px;
    }

    .steps-item .content {
        max-width: 100%;
    }
    .hero-title {
        font-size: 25px;
        margin-top: 4rem;
        margin-bottom: 3rem;
    }
}
@media (max-width: 426px) {

  .use-page::before {
    opacity: 0.4;
    top: 10%;
    width: 500px;
    height: 600px;
    left: -220px;
  }

  .steps {
    width: 95%;
  }

  .steps-item {
    width: 100%;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
  }

  .steps-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
  }

  .steps-item summary::-webkit-details-marker {
    display: none;
  }

  .steps-item .step-no {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 14px;
    line-height: 1.5rem;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-align: center;
    font-family: Sora, sans-serif;
    font-weight: 400;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
  }

  .steps-item .title-text {
    font-size: 16px;
    font-weight: 600;
    font-family: Sora, sans-serif;
    color: #ffffff;
    flex-grow: 1;
  }

  .steps-item .arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
  }

  .steps-item .arrow::before {
    content: "";
    position: absolute;
    width: 0.75rem;
    height: 0.75rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
  }

  .steps-item[open] .arrow {
    transform: rotate(90deg);
  }

  .steps-item .content {
    margin-top: 0.75rem;
    padding-left: 0.25rem;
    margin-left:20px;
  }

  .steps-item .content p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
  }

  .steps-item[open] {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
  }


  .step-left {
    max-width: 100%;
    width: 100%;
  }

  .step-title {
    font-size: 18px;
    margin-bottom: 0.5rem;
  }

  .step-text {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .step-right {
    width: 100%;
    text-align: center;
  }

  .step-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 0.5rem;
  }

  .step-right {
    max-width: 100px;
    margin: 0 auto;
  }
}

@media (max-width: 400px) {
  .step-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .step-indicator,
  .step-title {
    display: inline-block;
    vertical-align: middle;
  }

  .step-indicator {
    background-color: #9bbe2c;
    color: #0f0f0f;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-right: 0.5rem;
    flex-shrink: 0;
  }

  .step-title {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
  }

  .step-indicator+.step-title {
    display: inline-block;
  }

  .step-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .step-left::before {
    content: "";
    display: flex;
    align-items: center;
  }

  .step-indicator,
  .step-title {
    float: left;
  }

  .step-text {
    font-size: 11px;
  }

  .step-content {
    align-items: flex-start;
    padding: 1.2rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    max-width: 310px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    flex-direction: column;
  }



  .step-img {
    max-width: 100%;
    border-radius: 8px;
  }

  .step-container {
    margin-right: 0;
    padding: 1rem;
    box-sizing: border-box;
  }

  .step-content {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .step-left {
    max-width: 100%;
    width: 100%;
    min-width: auto;
  }

  .step-title {
    font-size: 16px;
    word-break: break-word;
  }

  .step-text {
    font-size: 12px;
    line-height: 1.5;
    word-break: break-word;
  }

  .step-right {
    max-width: 100%;
    margin: 1rem auto 0;
    text-align: center;

  }

  .step-img {
    max-width: 60%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 24px;
    line-height: 1.5;
  }

    .use-page {
    margin-top: 120px;
}
}

@media (max-width: 360px) {
  .use-page {
    padding: 0 1rem;
    box-sizing: border-box;
  }


  .step-content,
  .steps {
    max-width: 100%;
    box-sizing: border-box;
  }


}

@media (max-width: 350px){
      .hero-title {
        font-size: 21px;
        line-height: 1.5;
    }
}

@media (max-width: 330px) {
  .step-container {
    padding-left: 0;
    padding-right: 0;
  }

  .step-content {
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }

  .step-right {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    text-align: center;
  }

  .step-img {
    margin: 0 auto;
    display: block;
    max-width: 60%;
  }

  .step-left {
    max-width: 90%;
    margin: 0 auto;
  }

  .steps-item summary {
    gap: 0.5px;
  }

  .steps-item .title-text {
    font-size: 14px;
  }

  .steps-item .arrow::before {
    width: 0.55rem;
    height: 0.55rem;
  }

  .steps-item .content {
     padding-left: 0;
     margin: 0 auto;
     margin-top: 5px;
    }
}


