/**********************************/
.mindeset-section {
  background: url("../images/curve-mindeset.webp");
}

.change-section {
  background: url("../images/change_bg.webp") no-repeat;
  background-size: cover;
  background-position: top;
}

/**********************************/
.thoughtys {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  min-height: 545px;
}

.thoughtys p {
  font-size: 22px;
}

.thoughtys ol li,
.thoughtys ul li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  list-style-type: none;
  position: relative;
}

.thoughtys ol li::before {
  content: "";
  background: url("../icons/wrong.svg") no-repeat;
  background-size: contain;
  position: absolute;
  width: 18px;
  height: 18px;
  left: -25px;
  top: 3px;
}

.thoughtys ul li::before {
  content: "";
  background: url("../icons/correct.svg") no-repeat;
  background-size: contain;
  position: absolute;
  width: 18px;
  height: 18px;
  left: -25px;
  top: 3px;
}

/**********************************/
.way-title {
  width: 150px;
  margin: 0 auto 25px;
  padding: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--light-color);
  text-align: center;
  border-radius: 25px;
  position: relative;
}

.step {
  width: 70%;
  min-height: 78px;
  padding: 15px 10px;
  margin: 0 auto 25px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}

.way-title::before,
.step:not(:last-child)::before {
  content: "";
  background: url("../icons/arrow-down.svg") no-repeat;
  background-size: contain;
  position: absolute;
  width: 10px;
  height: 25px;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 5px;
  z-index: 0;
}

/**********************************/
.problem-section,
.id-section {
  background: url("../images/curve-mindeset.webp");
}

/**********************************/
.imagine-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.imagine {
  flex: 0 1 350px;
  min-height: 82px;
  padding: 15px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.from {
  border: 2px solid red;
}

.to {
  border: 2px solid green;
}

.arrow {
  font-size: 30px;
  font-weight: bold;
  margin: 0 10px;
}

/********************/
.becoming-section p {
  font-size: 18px;
  color: #fff;
}

.becoming-section h6:not(.mindset-head) {
  font-size: 22px;
  color: var(--light-color);
  margin-bottom: 10px;
  text-decoration: underline;
}

.becoming-section li {
  list-style-type: none;
  padding: 5px 0 5px 25px;
  font-size: 18px;
  color: var(--light-color);
  position: relative;
}

.becoming-section li::before {
  content: "";
  background: url("../icons/star.svg") no-repeat;
  background-size: contain;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 13px;
}

.becoming-card {
  width: 100%;
  height: 420px;
  overflow: hidden;
}

/************************/
/* Mobile-Specific Changes */
@media (max-width: 767px) {
  .ent-arrow,
  .ent-watch {
    display: none;
  }
  .thoughtys {
    padding: 15px;
    min-height: auto;
  }
  .thoughtys p {
    font-size: 18px;
  }
  .thoughtys ol li,
  .thoughtys ul li {
    font-size: 14px;
    margin-bottom: 8px;
    padding-left: 25px;
  }
  .thoughtys ol li::before,
  .thoughtys ul li::before {
    width: 16px;
    height: 16px;
    left: 0;
    top: 4px;
  }
  .way-title {
    width: 120px;
    font-size: 18px;
    padding: 8px;
  }
  .step {
    width: 100%;
    min-height: auto;
    padding: 12px;
    font-size: 16px;
    margin-bottom: 20px;
  }
  .way-title::before,
  .step:not(:last-child)::before {
    height: 20px;
    bottom: -20px;
  }
  .imagine-row {
    flex-direction: column;
    align-items: stretch;
    position: relative;
    gap: 25px;
    margin: 0 0 40px;
  }
  .arrow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    font-size: 24px;
  }
  .imagine {
    flex: 0 1 100%;
    min-height: auto;
    padding: 12px 15px;
    font-size: 14px;
  }
  .becoming-section p {
    font-size: 16px;
  }
  .becoming-section h6:not(.mindset-head) {
    font-size: 20px;
  }
  .becoming-section li {
    font-size: 16px;
    padding: 4px 0 4px 20px;
  }
  .becoming-section li::before {
    width: 14px;
    height: 14px;
    top: 10px;
  }
  .becoming-card {
    height: auto;
  }
  .video-responsive {
    width: 100% !important;
    height: 180px;
  }
  .overflow-hidden {
    height: 200px !important;
  }
  .identity-section .btn-mind {
    bottom: 20px;
    width: 90%;
  }
  .mindeset-section,
  .problem-section,
  .id-section {
    background-size: cover;
    background-position: center;
  }
  .change-section {
    background-size: cover;
  }
}