 
.orderStep__section .orderDesc2 {
  font-weight: 450;
  font-size: 18px;
  text-align: center;
  color: #231f20;
  margin-top: 30px;
}

.toDeliveryWrapper {
  display: flex;
  column-gap: 38px;
 
}

.deliverySteps {
  max-width: 400px;
  width: 100%;
}

.StepBox {
  display: flex;
  column-gap: 22px;
  padding: 20px;
  border: 0.796635px solid #DDF2E9;
  border-radius: 14.227px;
  margin-bottom: 12px;
  align-items: flex-start;
}

/* ============ Timeline Style for Order Steps ============ */

.orderStep__timeline .orderDesc {
  text-align: left;
  margin: 0;
  max-width: 100%;
  padding-top: 0;
}

.orderStep__timeline .orderDesc p {
  text-align: left;
  margin: 0;
  max-width: 100%;
  font-size: 16px;
  line-height: 180%;
  color: #536C8B;

  font-weight: 400;
  padding-top: 0;
}


.toDeliveryWrapper.timeline-layout {
  display: grid;
  grid-template-columns: 1fr 606px;
  gap: 50px;
  align-items: start;
 
}

/* Timeline Steps */
.timeline-steps {
  position: relative;
}

.timeline-step {
  position: relative;
  margin-bottom: 0;
  padding-bottom: 20px;
  min-height: 100px;
}


.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-connector {
position: absolute;
  left: 17px;
  top: 55%;
  height: 60px;
  bottom: -50%;
  width: 2px;
  transform: translateY(-22%);
}


.timeline-step .timeline-connector {


background: linear-gradient(180deg, #0C9286 0%, #F6FAFA 100%);
}

.timeline-step-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: transform 0.3s ease;
}

/* Collective hover effect on timeline-step-content */

/* On hover, make step number more visible (not filled) */
.timeline-step-content:hover .step-number,
.timeline-step:first-child .timeline-step-content .step-number {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.timeline-step-content:hover .step-text,
.timeline-step:first-child .timeline-step-content .step-text {
  background: #ffffff;
  box-shadow: 0px 4px 16.8px 0px #D4E6E6;
}




.step-number {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  z-index: 2;
  transition: all 0.3s ease;
  border: 1.5px solid #D0E8DE;
  color: #B8D4CD;
}

.step-text{
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 11px;
}

.timeline-step .step-number {
  border-color: #D0E8DE;
  color: #B8D4CD;
}


/* Remove pulse animation - disabled by default */
.step-number::before {
  display: none;
}


.step-text h3 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
  line-height: 100%;
  color: var(--color-heading);
  margin-bottom: 7px;
  transition: color 0.3s ease;
}

.step-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 180%;
  color: #4B5563;
}

/* Timeline Video Section */
.timeline-video {
  position: sticky;
  top: 100px;
}

.timeline-video .vidWrapper {
  border-radius: 16px;
  overflow: hidden;
  background: #313946;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 15px;
  height: 425px;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
}

.video-cta-section {
  margin-top: 0px;
  text-align: center;
  max-width: 427px;
    width: 100%;
    margin-left: auto;
}

.video-cta-section .bottom-desc {
  text-align: center;
  margin-bottom: 20px;
}

.video-cta-section .bottom-desc p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 160%;
  color: #4b5563;
  text-align: center;
}

@keyframes ctaPulse4 {
    0%   { box-shadow: 0 0 0 0 rgba(104, 90, 219, 0.45); }
    70%  { box-shadow: 0 0 0 12px rgba(104, 90, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(104, 90, 219, 0); }
}

.timeline-cta-btn {
  margin-top: 0px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  padding: 0 !important;
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
  font-family: var(--font-primary) !important;
  font-weight: var(--fw-bold) !important;
  font-size: 15px !important;
  text-align: center;
  border-radius: var(--radius-full) !important;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  max-width: 393px !important;
  position: relative;
  overflow: visible;
  animation: ctaPulse4 2s ease-out infinite;
}

 
.timeline-cta-btn:hover {
  background: var(--color-primary-hover) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(104, 90, 219, 0.35);
}

.timeline-cta-btn:hover::after {
  transform: translateX(4px);
}

/* Timeline Responsive */
@media (max-width: 991px) {
  .toDeliveryWrapper.timeline-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .timeline-video {
    position: relative;
    top: 0;
    order: 1;
  }

  .orderStep__timeline h2 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .orderStep__timeline h2 {
    font-size: 28px;
  }

  .timeline-video .vidWrapper {
    height: auto;
  }

  .orderStep__timeline .orderDesc p {
    font-size: 14px;
  }

  .step-number {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .step-image-container {
    width: 49px;
    height: 49px;
  }

  .step-image-container img {
    width: 25px;
    height: 25px;
  }

  .timeline-connector {
    left: 62px;
    top: 44px;
    height: 52px;
    transform: translateY(6%);
  }

  .step-text h3 {
    font-size: 16px;
  }

  .step-text p {
    font-size: 14px;
  }

  .timeline-step {
    margin-bottom: 28px;
  }
}

@media (max-width: 575px) {
  .orderStep__timeline h2 {
    font-size: 24px;
  }

  .timeline-step-content {
    gap: 16px;
  }

  .writer-stat-value {

    font-size: 26px;

  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-image-container {
    width: 42px;
    height: 42px;
  }

  .step-image-container img {
    width: 24px;
    height: 24px;
  }

  .timeline-connector {
    left: 14pxpx;
    top: 50%;
    height: 48px;
    transform: translateY(-25%);
  }

  .timeline-step {
    margin-bottom: 0px;
  }
}

/* ============ End Timeline Style ============ */

.orderBtn,
.sampleBtnCTA,
.writerBtn {
  max-width: max-content;
  padding: 12px 35px;
}

.StepBox:hover {
  border: 0.796635px solid var(--color-primary);
}

.orderBtn,
.specialOrderBtn,
.writerBtn {
  background-color: var(--color-primary);
  border-radius: 40px;
  line-height: 25px;
  color: var(--color-white);
  position: relative;
  font-weight: 450;
  text-align: center;
  z-index: 1;
}

.StepBox img {
  display: block;
  width: 38px;
  height: 38px;
}

.StepBox p {
  font-weight: 450;
  font-size: 15px;
  color: #221f1f;
}

.StepBox p span {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 16px;
}

.orderIcon {
  width: 35px;
  height: 35px;
}

.orderBtn,
.writerBtn {
  font-size: 17px;
  display: block;
  width: 100%;
  margin: 45px auto 0;
}
.orderBtn{
  max-width:393px;
}
.sampleBtnCTA {
  text-align: center;
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  column-gap: 7px;
}

.specialBtn {
  max-width: 331px;
  font-size: 18px !important;
}

.specialOrderBtn {
  padding: 12px 25px;
  font-size: 18px;
  display: block;
  max-width: max-content;
  width: 100%;
  margin: 25px auto 0;
}


.specialOrderBtn:before {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(12, 146, 134, 0.5);
}

/* ============ Step Image Container ============ */
.step-image-container {
  width: 49px;
  height: 49px;
  border-radius:100%;
  background-color: #E8F9F2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.step-image-container img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

/* ============================================================
   Two-Col Layout  (prefix: os-)
   ============================================================ */

/* Outer two-col wrapper */
.os-layout {
    display: flex;

    gap: 25px;
    align-items: stretch;

}

/* ── Left: Video ── */
.os-video-col {
    position: sticky;
    top: 100px;
        max-width: 676px;
    width: 100%;
}

.os-video-wrap .vidWrapper {
    border-radius: 20px;
    overflow: hidden;
    background: #313946;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 15px;
    height: 440px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
}

/* ── Right: Steps ── */
.os-steps-col {
    display: flex;
    flex-direction: column;
}

.os-steps-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

/* Step card */
.os-step-card {
    background: var(--color-bg-card);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--color-card-border);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.os-step-card.os-step-active {
    align-items: flex-start;
}

.os-step-card:hover,
.os-step-card.os-step-active {
    border-color: var(--color-primary);
    box-shadow: 0px 4px 20px 0px rgba(104, 90, 219, 0.12);
}

/* Number badge */
.os-step-num {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    background: var(--color-card-border);
    color: var(--color-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--fw-bold);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.os-step-card:hover .os-step-num,
.os-step-card.os-step-active .os-step-num {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Info */
.os-step-info {
    flex: 1;
    min-width: 0;
}

.os-step-title {
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    font-size: 18px;
    line-height: var(--lh-heading);
    color: var(--color-heading-light);
 
    transition: color 0.3s ease;
}

.os-step-card:hover .os-step-title,
.os-step-card.os-step-active .os-step-title {
    color: var(--color-primary);
    font-weight: var(--fw-semibold);
}

.os-step-desc {
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    font-size: var(--fs-sm);
    line-height: var(--lh-relaxed);
    color: var(--color-text);
    margin-top: 6px;
    display: none;
}

/* Cursor pointer on card */
.os-step-card {
    cursor: pointer;
}

/* CTA */
.os-cta-wrap {
    width: 100%;
    margin-top: auto;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .os-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-top: 36px;
    }

    .os-video-col {
        position: relative;
        top: 0;
    }

    .os-video-wrap .vidWrapper {
        height: 360px;
    }
}

@media (max-width: 767px) {
    .os-video-wrap .vidWrapper {
        height: auto;
        min-height: 260px;
    }

    .os-steps-list {
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .os-layout {
        padding-top: 28px;
        flex-direction: column-reverse;
    }

    .os-step-card {
        padding: 15px 16px;
        gap: 13px;
    }

    .os-step-num {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
/* ============ End Two-Col Layout ============ */
