.feature-section-two {
  position: relative;
  padding: 50px 0 0;
  background: #0a192f;
  overflow: hidden;
}

.banner {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.arc {
  width: 50%;
  /* adjust arc width */
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(180deg);
  transform-origin: center;
}

.feature-section-two .auto-container {
  position: relative;
  z-index: 5;
}

@media (max-width: 350px) {
  .arc {
    width: 100% !important;
    height: 65%;
    /* arc height on mobile */
    right: 0;
    top: 45%;
    bottom: 0;
    left: 0;
    transform: rotate(-90deg);
    /* optional, to flip the curve */
    transform-origin: center;
  }
}

@media (min-width: 351px) and (max-width: 767px) {
  .arc {
    width: 100% !important;
    height: 62%;
    /* arc height on mobile */
    right: 0;
    top: 40%;
    bottom: 0;
    left: 0;
    transform: rotate(-90deg);
    /* optional, to flip the curve */
    transform-origin: center;
  }
}

.ribbon-zigzag {
  padding: 40px 0;
}

.ribbon-row {
  width: 100%;
  display: flex;
  margin: 25px 0;
}

/* LEFT layout */
.ribbon-row.left {
  justify-content: flex-start;
}

/* RIGHT layout */
.ribbon-row.right {
  justify-content: flex-end;
}

.ribbon-card {
  width: 70%;
  position: relative;
  background: #f5f5f5;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px 20px 20px 60px;
}

/* Number bubble */
.ribbon-card .num {
  position: absolute;
  left: 15px;
  top: 30px;
  width: 32px;
  height: 32px;
  border: solid 1px rgba(0, 0, 0, 0.2);

  font-weight: 600;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Title */

strong {
  font-weight: bold;
}

/* Ribbon Tail Effect */
.ribbon-card .ribbon-tail {
  position: absolute;
  bottom: -12px;
  left: 40px;
  width: 40px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* Right side ribbon direction */
.ribbon-row.right .ribbon-card .ribbon-tail {
  left: auto;
  right: 40px;
  transform: scaleX(-1);
}

/* Responsive */
@media (max-width: 768px) {
  .ribbon-row {
    justify-content: center !important;
  }

  .ribbon-card {
    width: 100%;
  }
}

/* Must be visible for sticky */
.choose-section,
.choose-section .auto-container,
.choose-section .row {
  overflow: visible !important;
}

/* Sticky left */
@media (min-width: 992px) {
  .sticky-col {
    position: sticky;
    top: 120px;
    align-self: flex-start;
    /* important */
    z-index: 5;
  }

  /* Make right side taller so sticky has scroll space */
  .right-wrapper {
    position: relative;
  }
}

.page-wrapper {
  overflow: visible;
}

.main-footer .pattern-layer.style-two {
  background-position: left bottom;
  bottom: 0px;
}

.main-footer {
  margin-top: 0px;
}

.cta-box {
  border: solid 1px rgba(0, 0, 0, 0.2);
  padding: 30px 0px;
  background-color: #0a192f;
}

.process-box {
  display: flex;
  flex-direction: column;
}

.process-box.right {
  text-align: right;
}

/* Pill styling */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  border: 2px solid;

  font-weight: 600;
  width: 100%;
}

.pill1 {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-top-left-radius: 60px;
  border-bottom-left-radius: 60px;
}

.pill2 {
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  justify-content: end;
}

.icon-box {
  border: solid 1px rgba(0, 0, 0, 0.2);

  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pill .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

/* Description text */
.process-box p {
  margin-top: 10px;
}

/* Push descriptions outward, matching image layout */
.process-box.right p {
  margin-left: auto;
}

/* Color themes from your image */
.blue {
  border-color: #3a8bff;
}

.green {
  border-color: #39ca9c;
}

.lime {
  border-color: #b2d924;
}

.cyan {
  border-color: #0ebbe6;
}

.purple {
  border-color: #9b67ff;
}

.pink {
  border-color: #ff5ca7;
}

.blue .pill {
  border-color: #3a8bff;
}

.green .pill {
  border-color: #39ca9c;
}

.lime .pill {
  border-color: #b2d924;
}

.cyan .pill {
  border-color: #0ebbe6;
}

.purple .pill {
  border-color: #9b67ff;
}

.pink .pill {
  border-color: #ff5ca7;
}

/* Responsive */
@media (max-width: 767px) {
  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-box {
    text-align: left !important;
  }

  .process-box p {
    margin-left: 0 !important;
  }
}
