.step-hidden-area {
  display: flex;
  width: 100%;
}
.process-container {
  display: flex;
  margin: 50px auto;
  gap: 40px;
}

.title { font-size: 2.5rem; margin-bottom: 50px; color: #0d2137; }

.timeline {
  position: relative;
  padding-left: 100px;
}

/* The vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 210px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e6ed;
}

.step {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  cursor: pointer;
}

.step-label {
  width: 100px;
  color: var(--text-light);
  font-weight: 600;
  padding-top: 10px;
  font-family: "Poppins", sans-serif;
   font-size: 24px;
   font-weight: 500;
   line-height: 34px;
}

.step-content {
  padding-left: 40px;
  flex: 1;
}

.icon-box {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.step-title { 
  background: var(--text-gradient, linear-gradient(90deg, #012D46 0%, #155F6C 35.38%, #1EA6B4 85.77%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   font-family: "Poppins", sans-serif;
   font-size: 24px;
   font-weight: 500;
   line-height: 34px;
 }

/* Details hidden by default */
.details { 
  display: none; 
  max-width: 400px; 
  line-height: 1.6; 
  color: #4a5568;
}

.pera-text {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 22px;
  padding-top: 0px
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list li {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  line-height: 22px;
  position: relative;
  padding-left: 20px;
  padding-top: 14px;
}

.list li::after {
  position: absolute;
  content: "";
  top: 24px;
  left: 8px;
  height: 3px;
  width: 3px;
  background-color: #000000;
  border-radius: 50%;
}

.step-image-area {
  display: none;
}

.step.active .step-image-area {
  display: block;
}

.step.active .details { display: block; }
.step.active .step-label { color: var(--text-dark); }

/* Video Player Styling */
.video-column { flex: 1; padding-top: 100px; }
.video-placeholder {
  background: #cbd5e0;
  border-radius: 20px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.8);
  border-radius: 50%;
  position: relative;
}
.play-button::after {
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #a0aec0;
  position: absolute;
  top: 25px; left: 28px;
}

.step-image-area .image-bg {
  background-color: red;
  border-radius: 16px;
  overflow: hidden;
  min-height: 390px;
  min-width: 687px;
  margin-left: 140px;
  position: relative;
  padding: 50px 50px 50px 40px;
}

.step-image-area .image-bg .video-image a {
  display: block;
  height: 120px;
  width: 120px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -60px;
  margin-left: -60px;
}

.image-heading h3 {
  font-size: 38px;
  line-height: 46px;
  color: #fff;
  font-weight: 500;
}

.image-heading p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
}

.btn1 {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  display: block;
  padding-bottom: 10px;
}

.btn1:hover {
  color: #fff;
  font-weight: 500;
}

.step::after {
    content: "";
    position: absolute;
    left: 110px;
    top: 0;
    background: red;
    height: 0%;
    width: 2px;
}
.steps-column {
    width: 100%;
}
.step.active::after {
    content: "";
    position: absolute;
    left: 110px;
    top: 0;
    background: #094156;
    height: 100%;
    width: 2px;
}
