.process-main {
  width: 100%;
  max-width: 100%;
  /* height: 1100px; */
  border-radius: 30px;
  padding: 50px 20px;
  overflow: hidden;
  margin: 0 auto;
}

.process-main .process-main-content {
  border: 2px solid #dd630f;
  border-radius: 30px;
  padding: 100px 150px 0 150px;
  background-image: url("../../../../public/processbg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom: unset;
}

.process-main .process-title {
  font-size: 50px;
  font-family: "Clash Display", sans-serif;
  background: linear-gradient(180deg, #dd630f 0%, #ffa245 100%);
  font-weight: 500;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}

.process-main .process-subtitle {
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: #3c3c3c;
  line-height: 1.4;
  margin-bottom: 0;
}

.process-main .processs-title {
  font-size: 60px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -0.020em;
  line-height: 1;
  color: #000;
  margin-bottom: 16px;
}

.processs-title-highlight {
  color: #ff7415;
}

.connecting-lines {
  position: relative;
  height: 4px;
  margin-bottom: 60px;
  z-index: 1;
}

.connect-line {
  position: absolute;
  height: 4px;
  border-radius: 2px;
  top: 0;
}

.connect-line-1 {
  left: 8.33%;
  width: 8.34%;
  background: linear-gradient(90deg, #dd630f 0%, #ffa245 100%);
}

.connect-line-2 {
  left: 25%;
  width: 8.33%;
  background: linear-gradient(90deg, #dd630f 0%, #ffa245 100%);
}

.connect-line-3 {
  left: 41.67%;
  width: 8.33%;
  background: #e9ecef;
}

.connect-line-4 {
  left: 58.33%;
  width: 8.34%;
  background: #e9ecef;
}

.connect-line-5 {
  left: 75%;
  width: 8.33%;
  background: #e9ecef;
}

.steps-grid {
  position: relative;
  z-index: 2;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-img-wrapper {
  margin-bottom: 25px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.step-item:hover .step-img-wrapper {
  transform: scale(1.05);
}

.step-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.step-img {
  width: 100%;
}

.step-info {
  max-width: 220px;
}

.step-heading {
  font-size: 28px;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-text {
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.process-btn {
  background: linear-gradient(
    180deg,
    rgba(221, 99, 15, 1) 0%,
    rgba(255, 162, 69, 1) 100%
  );
  height: 60px;
  padding: 10px;
  border-radius: 70px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.process-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(
    180deg,
    rgba(201, 89, 13, 1) 0%,
    rgba(235, 152, 59, 1) 100%
  );
  box-shadow: 0 10px 30px rgba(221, 99, 15, 0.3);
}

.btn-icon-container {
  width: 46px;
  height: 46px;
  position: relative;
}

.btn-circle-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  background-color: white;
  opacity: 0.2;
}

.btn-circle-3 {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 22px;
  height: 22px;
  border-radius: 11px;
  background-color: white;
  opacity: 0.3;
}

.btn-circle-4 {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: white;
  opacity: 1;
}

.btn-text {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: white;
  min-width: 196px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.justify-content-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

@media (min-width: 1024px) and (max-width: 1550px) {
  .process-main {
    max-width: 1800px;
    height: auto;
    padding: 50px 20px;
  }

  .process-main .process-main-content {
    padding: 80px 100px 0 100px;
  }

 .process-main .processs-title {
  font-size: 45px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -0.020em;
  line-height: 1;
  color: #000;
  margin-bottom: 16px;
}

  .process-main .process-subtitle {
    font-size: 19px;
    font-weight: 500;
    color: #000;
    margin: 0 auto 30px;
    text-align: center;
  }

  .connecting-lines {
    margin-bottom: 40px;
  }

  .step-heading {
    font-size: 22px;
  }

  .step-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 1199.98px) {
 .process-main .process-title {
    font-size: 52px;
  }

  .process-main .process-subtitle {
    font-size: 22px;
  }

  .step-img {
    width: 110px;
    height: 110px;
  }

  .step-heading {
    font-size: 18px;
  }

  .step-text {
    font-size: 13px;
  }

  .step-info {
    max-width: 200px;
  }
}

@media (max-width: 991.98px) {
  .process-main .process-title {
    font-size: 48px;
  }

  .process-main .process-subtitle {
    font-size: 20px;
  }

  .connecting-lines {
    display: none;
  }

  .steps-grid {
    justify-content: center;
  }

  .step-img {
    width: 130px;
    height: 200px;
  }

  .step-info {
    max-width: 250px;
  }
}


@media (max-width: 835px) {
  .process-main {
    padding: 40px 15px;
    border-radius: 20px;
  }

  .process-main .process-main-content {
    padding: 50px 20px 40px 20px;
    border-radius: 20px;
  }

  .process-main .process-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

   .process-main .processs-title {
  font-size: 28px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -0.020em;
  line-height: 1;
  color: #000;
  margin-bottom: 16px;
}

  .process-main .process-subtitle {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .steps-grid {
    margin-top: 20px !important;
  }

  /* .step-item {
    margin-bottom: 40px;
    padding: 0 10px;
  }

  .step-img-wrapper {
    margin-bottom: 20px;
  }

  .step-img {
    width: 120px !important;
    height: auto;
  } */

  .step-info {
    max-width: 100%;
  }

  .step-heading {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .step-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .process-btn {
    height: 55px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .btn-text {
    font-size: 18px;
    min-width: auto;
  }
}


@media (max-width: 575.98px) {
  .process-main {
    padding: 30px 12px;
    border-radius: 18px;
  }

  .process-main .process-main-content {
    padding: 40px 16px 30px 16px;
    border-radius: 18px;
  }

   .process-main .processs-title {
  font-size: 28px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -0.020em;
  line-height: 1;
  color: #000;
  margin-bottom: 16px;
}

  .process-main .process-title {
    font-size: 28px !important;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .process-main.process-subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  .mb-5 {
    margin-bottom: 1.5rem !important;
  }

  .steps-grid {
    margin-top: 15px !important;
  }

  .step-item {
    margin-bottom: 35px;
    padding: 0 8px;
  }

  .step-img-wrapper {
    margin-bottom: 18px;
  }

  .step-img {
    width: 100px !important;
    height: auto;
  }

  .step-heading {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .step-text {
    font-size: 13px;
    line-height: 1.5;
  }

  .process-btn {
    height: 50px;
    max-width: 260px;
  }

  .btn-text {
    font-size: 16px;
  }

  .btn-icon-container {
    width: 40px;
    height: 40px;
  }

  .btn-circle-1 {
    width: 40px;
    height: 40px;
    border-radius: 20px;
  }

  .btn-circle-3 {
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    border-radius: 10px;
  }

  .btn-circle-4 {
    top: 15px;
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
  }
}


@media (max-width: 450px) {
  .process-main {
    padding: 25px 10px;
    border-radius: 16px;
  }

  .process-main .process-main-content {
    padding: 35px 14px 25px 14px;
    border-radius: 16px;
  }
 .process-main .processs-title {
  font-size: 28px;
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  letter-spacing: -0.020em;
  line-height: 1;
  color: #000;
  margin-bottom: 16px;
}

 .process-main .process-subtitle {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .step-item {
    margin-bottom: 30px;
    padding: 0 5px;
  }

  .step-img-wrapper {
    margin-bottom: 15px;
  }

  .step-img {
    width: 85px !important;
    height: auto;
  }

  .step-heading {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .step-text {
    font-size: 12px;
    line-height: 1.4;
  }

  .process-btn {
    height: 48px;
    max-width: 240px;
  }

  .btn-text {
    font-size: 14px;
  }
}