/* ================= HOW IT WORKS ================= */
.process-section{
  background:#F8F8F8;
  padding:110px 0 120px;
  text-align:center;
  position:relative;
}

.process-section .section-tag{
  color:#ff1a1a;
  font-size:12px;
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:15px;
}

.process-section .section-title{
  font-size:42px;
  font-weight:800;
  color:#0b1b2a;
  margin-bottom:80px;
  line-height:1.2;
}

.process-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  position:relative;
}

/* Dotted Connector Line */
.process-wrapper::before{
  content:"";
  position:absolute;
  top:35px;
  left:8%;
  width:84%;
  height:1px;
  border-top:2px dashed #d9d9d9;
  z-index:0;
}

.process-step{
  width:22%;
  position:relative;
  z-index:1;
}

.icon-circle{
  width:80px;
  height:80px;
  border-radius:50%;
  border:2px solid #ff1a1a;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 25px;
  font-weight:700;
  color:#ff1a1a;
  font-size:15px;
  position:relative;
}

/* small red badge */
.icon-circle::after{
  content:attr(data-step);
  position:absolute;
  bottom:-6px;
  right:-6px;
  width:26px;
  height:26px;
  background:#ff1a1a;
  color:#fff;
  font-size:11px;
  font-weight:600;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.process-step h4{
  font-size:16px;
  font-weight:700;
  margin-bottom:10px;
  color:#0b1b2a;
}

.process-step p{
  font-size:13px;
  color:#777;
  line-height:1.6;
  max-width:220px;
  margin:auto;
}

/* ================= INDUSTRY SECTION ================= */
.industry-section{
  padding:120px 0;
  background:#fff;
}

.industry-wrapper{
  display:flex;
  align-items:center;
  gap:0px;
}

/* Image with clipped corner */
.industry-image{
  position:relative;
  width:50%;
}

.industry-image img{
      width: 100%;
    border-radius: 14px;
    display: block;
    border-bottom-right-radius: 0px;
}

/* red corner shape */
/*.industry-image::after{
  content:"";
  position:absolute;
  right:-20px;
  bottom:60px;
  width:120px;
  height:120px;
  background:#ff1a1a;
  clip-path:polygon(0 0,100% 0,100% 100%);
}
*/
.industry-content{
  width:50%;
}

.industry-content h2{
  font-size:38px;
  font-weight:800;
  color:#0b1b2a;
  margin-bottom:20px;
  line-height:1.2;
   padding-left: 25px;
}

.industry-content p{
          font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 29px;
    max-width: 636px;
    padding-left: 25px;
    margin-top: 43px;
    text-align: justify;
}

/* Red Box */
.industry-box{
  background:#ff1a1a;
  padding:40px 45px;
  border-radius:0 0 80px 0;
}

.industry-box ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px 40px;
}

.industry-box li{
  color:#fff;
  font-size:14px;
  font-weight:500;
  position:relative;
  padding-left:20px;
}

.industry-box li::before{
  content:"✔";
  position:absolute;
  left:0;
  font-size:12px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:991px){

  .process-wrapper{
    flex-direction:column;
    gap:40px;
  }

  .process-wrapper::before{
    display:none;
  }

  .process-step{
    width:100%;
  }

  .industry-wrapper{
    flex-direction:column;
  }

  .industry-image,
  .industry-content{
    width:100%;
  }

  .industry-image::after{
    display:none;
  }

  .industry-box{
    border-radius:20px;
  }
}
