#strategy {
  margin-top: 30px;
}

.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

}

.images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.images img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.progress-container {
  flex: 1;
}

.progress-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.progress-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-right: auto;
}

.progress-bar-container {
  width: 50%;
  background: #f0f0f0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin-left: 20px;
  position: relative;
  /* For aligning percentage text if needed */
}

.progress-bar {
  height: 100%;
  background: #f8b400;
  width: 0%;
  /* Initial width for animation */
  animation: progressAnimation 2s ease-in-out forwards;
}

@keyframes progressAnimation {
  from {
    width: 0%;
  }

  to {
    width: var(--progress-width, 100%);
    /* Use CSS variables for dynamic width */
  }
}

.progress-percentage {
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #f8b400;
}

/* portfolio filter button */
.portfolio-filters .active {
  background-color: #e2ac00;
  color: white;
  border: none;
  padding: 11px 0px;
  transition: 300ms ease-in-out;
}

.filter-btn {
  margin-top: 10px;
  background: none;
  width: 200px;
  margin-right: 10px;
  border-radius: 20px;
  padding: 10px 0px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;

  }

  .portfolio-filters {
    display: flex;
    overflow-x: scroll;
  }
}

/* how does it works */
.boxcon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  text-align: left;
  width: 60%;
  margin: auto;
}

.box {
  background-color: var(--white-color);
  border: 2px solid #e2ac00;
  box-shadow: 5px 28px 75px 4px var(--box-shadow-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  background-image: linear-gradient(to right, rgba(255, 0, 0, 0), rgb(255, 220, 200, 0.3));


}

.box img {
  width: 50px;
  margin-right: 10px;
}

.box p {
  z-index: 1;
  margin-bottom: 0;
}

.box9 {
  grid-column: span 2;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.box:hover {
  background-color: #FFDCC8;
  transition: 600ms ease-in-out;
}

@media (max-width: 768px) {
  .boxcon {
    grid-template-columns: 1fr;
    width: 90%;
  }

  .box9 {
    grid-column: span 1;
  }
}