.section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}


.info-box {
	background-color: #fff;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      background-color: #f8fafc
}

.info-heading {
	padding: 20px;
	font-size: 24px;
	font-weight: 600;
	text-align: center;
	color: #992f69;
}
.info-heading h5 {
	color: #04286b;
}

.info-content {
	position: relative;
	padding: 20px 30px;
	font-size: 20px;
	line-height: 1.7;
}

.info-content p {
	margin-bottom: 20px;
	color: #04286b;
	font-size: 25px;
}

.wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.left {
  flex: 1;
  min-width: 300px;
}

.left img {
  width: 100%;
  padding-top: 25px;
  border-radius: 10px;
}

.right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.white {
  color: #fff;
}

.step {
  display: flex;
  align-items: stretch;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.step-number {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

.step-content {
  position: relative;
  flex-grow: 1;
  padding: 20px;
  color: #fff;
  overflow: hidden;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  z-index: 0;
  transition: width 0.4s ease;
  opacity: 0.2;
}

.step:hover .step-content::before {
  width: 100%;
}

.step-content h3,
.step-content p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.step-content p {
  font-size: 20px;
}

.step-1 .step-number {
  background: #4f46e5;
}

.step-1 .step-content {
  background: #4f46e5;
}

.step-1 .step-content::before {
  background: #3730a3;
}

.step-2 .step-number {
  background: #10b981;
}

.step-2 .step-content {
  background: #10b981;
}

.step-2 .step-content::before {
  background: #047857;
}

.step-3 .step-number {
  background: #f59e0b;
}

.step-3 .step-content {
  background: #f59e0b;
}

.step-3 .step-content::before {
  background: #b45309;
}

.step-4 .step-number {
  background: #ec4899;
}

.step-4 .step-content {
  background: #ec4899;
}

.step-4 .step-content::before {
  background: #9d174d;
}

.step-5 .step-number {
  background: #0ea5e9;
}

.step-5 .step-content {
  background: #0ea5e9;
}

.step-5 .step-content::before {
  background: #0369a1;
}

@media only screen and (min-width: 1300px) and (max-width: 1500px){
  .section {
    padding: 40px 80px;
  }
 }
 @media only screen and (min-width: 900px) and (max-width: 1301px){
  .section {
    padding: 40px 80px;
  }
 }
@media (max-width: 1100px){
  .wrapper {
    flex-direction: column;
    padding: 0px;
  }

  .left img {
    display: block;
    margin: 0 auto 20px auto;
    width: 600px;
    height: 400px;
  }
 }


 @media only screen and (min-width: 800px) and (max-width: 900px){
  .wrapper {
    flex-direction: column;
  }

  .step-content {
    padding: 15px;
  }

  /* .left h2 {
    font-size: 28px;
    text-align: center;
  } */

  .left img {
    display: block;
    margin: 0 auto 20px auto;
    width: 600px;
    height: 400px;
  }

  .section {
    margin-bottom: -20px;
    padding: 20px;
    margin-left: 60px;
    margin-right: 60px;
  }
  .wrapper {
    gap: 0px;
    padding: 0px 0px;
  }
}

 @media only screen and (min-width: 701px) and (max-width: 801px){
  .section {
    padding: 40px 80px;
  }
  .wrapper{
    padding: 0px 20px;
  }
 }
@media (max-width: 500px) {
  .step {
    flex-direction: column;
  }

  .step-number {
    width: 100%;
    height: 60px;
    font-size: 20px;
  }
  .section {
    margin-bottom: -20px;
    padding: 20px;
  }
  .wrapper {
    gap: 0px;
    padding: 0px 0px;
  }
}
