 :root {
     --teal: #ff007a;
     --muted: #9aa3ad;
     --font-poppins: "poppins", sans-serif;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 p {
     font-family: var(--font-poppins) !important;
 }

 * {
     box-sizing: border-box;
 }

 .timeline__main-parent {
     margin: 0;
     display: flex;
     justify-content: center;
     padding: 40px 12px;
     flex-direction: column;
     align-items: center;
 }

 .timeline__wrap {
     width: 80vw;
     text-align: center;
 }

 .timeline__wrap h1 {
     margin: 0 0 22px;
     font-size: 28px;
     color: #0f1720;
     font-weight: 600;
 }

 /* TIMELINE */
 .timeline__bar {
     position: relative;
     display: flex;
     align-items: center;
     gap: 12px;
     margin: 0 auto 18px;
     max-width: 900px;
 }

 .timeline__line {
     position: absolute;
     left: 0;
     right: 0;
     top: 22px;
     height: 2px;
     background: #d8dde2;
     z-index: 1;
     border-radius: 2px;
 }

 .timeline__progress {
     position: absolute;
     left: 0;
     top: 22px;
     height: 2px;
     background: var(--teal);
     width: 0;
     z-index: 2;
     transition: width 0.28s ease;
 }

 .timeline__item {
     position: relative;
     z-index: 3;
     flex: 1;
     display: flex;
     flex-direction: column;
     align-items: center;
     cursor: pointer;
     color: #6b7280;
     font-weight: 500;
     font-size: 14px;
 }

 .timeline__item .timeline__dot {
     width: 18px;
     height: 18px;
     border-radius: 50%;
     background: #9aa3ad !important;
     transition: all 0.25s;
     margin-top: -4px;
 }

 .timeline__item.active {
     color: #ff007a !important;
     font-weight: 700;
 }

 .timeline__item.active .timeline__dot {
     background: #ff007a !important;
     box-shadow: 0 4px 12px rgba(42, 169, 161, 0.18);
 }

 /* CAROUSEL */
 .timeline__carousel-wrap {
     position: relative;
     margin-bottom: 12px;
     overflow: hidden;
     padding: 18px 0px;
 }

 .timeline__nav-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 44px;
     height: 44px;
     border-radius: 10px;
     background: #fff;
     border: 1px solid rgba(2, 6, 23, 0.06);
     display: grid;
     place-items: center;
     box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
     cursor: pointer;
     z-index: 50;
 }

 .timeline__label {
     font-family: var(--font-poppins);
 }

 .timeline__nav-left {
     left: 6px;
 }

 .timeline__nav-right {
     right: 6px;
 }

 .timeline__nav-arrow svg {
     width: 18px;
     height: 18px;
     opacity: 0.85;
 }

 /* Slick visuals */
 .slick-list {
     overflow: visible;
 }

 .timeline__slider {
     padding: 6px 0;
 }

 .timeline__slide {
     border-radius: 12px !important;
     overflow: hidden;
     outline: none;
     height: 46vh !important;
 }

 .timeline__slide img {
     width: 100%;
     height: 100% !important;
     object-fit: contain;
     display: block;
     border-radius: 12px;
 }

 .slick-slide {
     opacity: 0.5 !important;
     filter: grayscale(70%) !important;
     transform: scale(0.96) !important;
     transition: all 0.36s cubic-bezier(0.2, 0.9, 0.2, 1) !important;
     padding: 0 12px !important;
     display: flex;
     position: relative !important;
     z-index: 1;
 }

 .slick-center {
     opacity: 1 !important;
     filter: none !important;
     transform: scale(1.81) !important;
     z-index: 50 !important;
 }

 .slick-prev,
 .slick-next {
     display: none !important;
     /* hide default slick arrows */
 }

 /* Text */
 .timeline__text-title {
     font-size: 20px;
     font-weight: 700;
     margin-top: 12px;
     font-family: var(--font-poppins);
 }

 .timeline__text-desc {
     max-width: 760px;
     margin: 8px auto 0;
     color: #6b7280;
     font-size: 14px;
     line-height: 1.6;
     font-family: var(--font-poppins);
 }

 /* Mobile nav buttons (if used) */
 .timeline__mobile-nav {
     display: none;
     justify-content: center;
     gap: 20px;
     margin-top: 20px;
 }

 .timeline__mobile-nav-btn {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: #fff;
     border: 1px solid rgba(2, 6, 23, 0.06);
     display: grid;
     place-items: center;
     box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06);
     cursor: pointer;
 }

 .timeline__mobile-nav-btn svg {
     width: 20px;
     height: 20px;
     opacity: 0.85;
 }

 @media (max-width: 1440px) {
     .timeline__wrap {
         width: 100vw !important;
     }
 }

 /* Responsive */
 @media (max-width: 900px) {
     .timeline__carousel-wrap {
         padding: 8px 60px;
     }

     .timeline__nav-arrow {
         display: block;
     }

     .timeline__item {
         font-size: 13px;
     }

     .timeline__slide {
         height: 400px !important;
     }

     .slick-slide {
         padding: 0 8px;
     }

     .slick-center {
         transform: scale(1.1) !important;
     }
 }

 @media (max-width: 768px) {
     .timeline__carousel-wrap {
         padding: 8px 50px;
     }

     .timeline__slide img {
         object-fit: cover !important;
     }

     .timeline__wrap {
         width: 100vw !important;
     }

     .timeline__nav-arrow {
         width: 40px;
         height: 40px;
     }

     .timeline__nav-arrow svg {
         width: 16px;
         height: 16px;
     }
 }

 @media (max-width: 520px) {

     .timeline__line,
     .timeline__progress {
         top: 18px;
     }

     .timeline__wrap {
         width: 100% !important;
     }

     .timeline__item .timeline__dot {
         width: 14px;
         height: 14px;
         margin-top: -4px;
     }

     .timeline__slide {
         height: 250px !important;
     }

     .timeline__carousel-wrap {
         padding: 8px 40px;
     }

     .timeline__nav-arrow {
         width: 36px;
         height: 36px;
     }

     .timeline__nav-arrow svg {
         width: 14px;
         height: 14px;
     }

     .slick-center {
         transform: scale(1.08) !important;
     }
 }

 @media (max-width: 380px) {
     .timeline__carousel-wrap {
         padding: 8px 30px;
     }

     .timeline__nav-arrow {
         width: 32px;
         height: 32px;
     }
 }