
:root {
/*  --color-bg: #ffffff;
  --color-text-main: #111827;
  --color-text-sub: #4b5563;*/
  --color-pink: #f472b6;
  --color-pink-dark: #db2777;
  --color-purple: #a78bfa;
  --color-purple-bg: #a5a6f6;
  /* Matches design better */
  --color-red-blob: #ff6b6b;
}

/* Header */
.header-content {
  text-align: center;
  margin-bottom: 2rem;
}


.highlight-tag {
  display: inline-block;
  background-color: var(--color-pink);
  color: white;
  padding: 0.2rem 1rem;
  transform: rotate(-2deg) skew(-5deg);
  border-radius: 4px;
  border: 2px solid #000;
  /* Comic style border often seen in these designs */
  box-shadow: 4px 4px 0px #000;
  margin: 0 0.5rem;
  font-weight: 800;
}

.subtitle {
  font-size: 1.125rem;
  color: var(--color-text-sub);
  max-width: 600px;
  margin: 0 auto;
}

/* Slider Layout */
.verticle-slider-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 100px;
}


/* Steps (Left Column) */
.steps-container {
  display: flex;
  flex-direction: column;  
}
.step-item {
    padding-bottom: 24px;
    margin-bottom: 20px;
}

.step-item {
  position: relative;
  /*padding-left: 3.5rem;*/
  /* Increased padding for progress bar */
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  min-height: 80px;
  /* Ensure space for content */
}

.step-item.active {
  opacity: 1;
}

/* Progress Bar Styles */
.progress-track {
    position: absolute;
    left: 0;
    /* display: none; */
    bottom: 0;
    width: 100%;
    background-color: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    height: 2px;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background-color: var(--color-pink-dark);
  border-radius: 4px;
}

/* Animate only when active */
.step-item.active .progress-fill {
  animation: fillProgress 5000ms linear forwards;
}

@keyframes fillProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}


.icon-svg {
  width: 24px;
  height: 24px;
}

.verticle-step-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 15px;
}
.active .verticle-step-details .learn-more-btn {
    height: auto;
    opacity: 1;
    display: block;
}
.verticle-step-details .learn-more-btn {
    transition: height 0.5s ease-out, opacity 0.5s ease-out;
    overflow: hidden;
    display: none;
    opacity: 0;
    height: 0;
    margin-top: 15px;    
    padding: 18px 35px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid #101828;
    background: #fff;
    color: #0D41E1;
    line-height: 1;
}

/*.verticle-step-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}*/

.step-item.active .verticle-step-details {
  max-height: 200px;
  /* Arbitrary limit for animation */
}
.verticle-step-desc {
    font-size: 20px;
    color: #101828;
    margin-bottom: 0;
}

.learn-more-btn:hover {
    background-color: #0D41E1;
    color: white;
}

/* Right Column: Visual Display */
.visual-container {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.red-blob {
    position: absolute;
    top: -130px;
    right: 40px;
    z-index: 0;
}

.purple-card {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-purple-bg);
  border-radius: 20px 20px 20px 100px;
  border: 3px solid #000;
  box-shadow: 10px 10px 0px #000;
  /* Brutalist shadow */
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  /* Center content */
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}

.card-content.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Placeholder Visuals */
.viz-placeholder {
  text-align: center;
  color: #fff;
}

.viz-icon-large {
  font-size: 5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(4px 4px 0px rgba(0, 0, 0, 0.2));
}

.viz-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.viz-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.15));
    border-radius: 12px;
    transition: transform 0.5s ease;
}
/*
.card-content.active .viz-image {
  transform: scale(1);
}

.card-content:not(.active) .viz-image {
  transform: scale(0.9);
}*/



@media (max-width: 1400px) {
.visual-container { height: 550px;}
.verticle-slider-layout { padding-top: 70px;}
.verticle-step-desc { font-size: 18px;}
.red-blob { top: -100px;}


}

@media (max-width: 1200px) {
.visual-container {height: 430px; }
.verticle-step-desc {font-size: 16px; }
.verticle-slider-layout { gap: 30px;}


}

@media (min-width: 900px) {
.mobile-verticle-slider {display: none !important; }

}


/*Mobile*/

@media (max-width: 900px) {
.verticle-slider-layout {display: none; }
    .mobile-verticle-card {text-align: center; padding-top: 70px; }
.shape-wrap{position:relative;}
.mobile-pink-shap {max-width: 170px; position: absolute; top: -70px; right: 40px; z-index: -1; }
.mobile-text-part {padding-top: 50px; }
.mobile-text-part .sub-title {margin-bottom: 10px; }

/* This is your blue blocky shape */
.mobile-blue-shape {width: 100%; height: 100%; background: #B3AEFF; border-radius: 16px 16px 16px 200px; border: 2px solid #101828; overflow: hidden; box-shadow: 8px 8px 0px 0px #000000; }
button.learn-more-btn {padding: 18px 35px; border-radius: 6px; font-weight: 600; cursor: pointer; transition: all 0.2s; border: 2px solid #101828; background: #fff; color: #0D41E1; line-height: 1; }
.mobile-verticle-slider .owl-dots button.owl-dot span {width: 12px; height: 12px; background: #D9D9D9; display: block; border-radius: 12px; }
.mobile-verticle-slider .owl-dots {text-align: center; display: flex; justify-content: center; gap: 5px; margin-top: 20px; }
.owl-dots button.owl-dot.active span {background: #0D41E1; }

}


@media (max-width: 767px) {
.mobile-blue-shape {border-radius: 16px 16px 16px 160px;}
.mobile-text-part {padding-top: 30px; }
.mobile-verticle-card {  padding-top: 40px;}
.mobile-pink-shap { max-width: 100px; top: -40px; right: 30px;}

}