.elementor-641 .elementor-element.elementor-element-ad13cc3{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-641 .elementor-element.elementor-element-2c0a27d img{border-radius:14px 14px 14px 14px;box-shadow:0px 8px 10px 0px rgba(0,0,0,0.5);}.elementor-641 .elementor-element.elementor-element-afa0823{--display:flex;}.elementor-641 .elementor-element.elementor-element-c944903 .elementor-button{background-color:#C51B54;font-size:25px;border-radius:15px 15px 15px 15px;}.elementor-641 .elementor-element.elementor-element-c944903 > .elementor-widget-container{margin:-93px 148px 0px 0px;}.elementor-641 .elementor-element.elementor-element-f6bff52{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;--padding-top:50px;--padding-bottom:57px;--padding-left:0px;--padding-right:0px;}.elementor-641 .elementor-element.elementor-element-efb4d40{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--gap:0px 0px;--row-gap:0px;--column-gap:0px;--border-radius:28px 28px 28px 28px;box-shadow:0px 0px 25px 0px rgba(0,0,0,0.5);--padding-top:30px;--padding-bottom:30px;--padding-left:30px;--padding-right:30px;}.elementor-641 .elementor-element.elementor-element-8f694de{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:100px;--padding-left:0px;--padding-right:0px;}.elementor-641 .elementor-element.elementor-element-af00a4f{--display:flex;}body.elementor-page-641:not(.elementor-motion-effects-element-type-background), body.elementor-page-641 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}@media(max-width:767px){.elementor-641 .elementor-element.elementor-element-efb4d40{--width:77%;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-641 .elementor-element.elementor-element-d2a1a59 > .elementor-widget-container{padding:20px 20px 20px 20px;}}@media(min-width:768px){.elementor-641 .elementor-element.elementor-element-efb4d40{--width:55%;}}/* Start custom CSS for html, class: .elementor-element-d5b6190 *//* ===============================
   GLOBAL
================================ */
.custom-timeline-section * {
  box-sizing: border-box;
}

.custom-timeline-section {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 30px 10px;
  color: #333;
}

/* ===============================
   TIMELINE WRAPPER
================================ */
.custom-timeline {
  position: relative;
  max-width: 700px;
  margin: auto;
}

/* Center vertical line */
.custom-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, #003049, #ff89ac);
  box-shadow: 0 0 10px rgba(197, 27, 84, 0.3);
}

/* ===============================
   TIMELINE STEP
================================ */
.custom-timeline-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  position: relative;

  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s forwards;
}

/* Alternating sides */
.custom-timeline-step:nth-child(odd) {
  flex-direction: row;
}
.custom-timeline-step:nth-child(even) {
  flex-direction: row-reverse;
}

/* Animation delay */
.custom-timeline-step:nth-child(1) { animation-delay: 0s; }
.custom-timeline-step:nth-child(2) { animation-delay: 0.2s; }
.custom-timeline-step:nth-child(3) { animation-delay: 0.4s; }
.custom-timeline-step:nth-child(4) { animation-delay: 0.6s; }
.custom-timeline-step:nth-child(5) { animation-delay: 0.8s; }
.custom-timeline-step:nth-child(6) { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   CONTENT CARD
================================ */
.custom-timeline-content {
  width: 45%;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  position: relative;
  transition: all 0.3s ease;
}

.custom-timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Heading */
.custom-timeline-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #C51B54;
}

/* Session pill */
.custom-step-circle {
  display: inline-block;
  padding: 6px 14px;
  background: #C51B54;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
}

/* Paragraph */
.custom-timeline-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

/* ===============================
   CENTER DOT
================================ */
.custom-timeline-step::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #fff;
  border: 5px solid #C51B54;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 6px rgba(197, 27, 84, 0.4);
}

/* ===============================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

  .custom-timeline::before {
    display: none;
  }

  .custom-timeline-step {
    flex-direction: column !important;
    text-align: center;
  }

  .custom-timeline-content {
    width: 90%;
  }

  .custom-timeline-step::after {
    display: none;
  }
}


/* ===============================
   PLAY NOW BUTTON
================================ */
.play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 10px 22px;
  background: #C51B54;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 6px 14px rgba(193, 155, 87, 0.35);
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: #C51B54;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(193, 155, 87, 0.45);
}

.play-btn:active {
  transform: scale(0.96);
}

/* Center button on mobile */
@media (max-width: 768px) {
  .play-btn {
    justify-content: center;
  }
}




/* ===============================
   PLAY NOW BUTTON STYLE
================================ */
.session-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 24px;
  background: #C51B54;            /* Gold */
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 6px 14px rgba(193, 155, 87, 0.35);
  transition: all 0.3s ease;
}

/* Hover effect */
.session-btn:hover {
  background: #C51B54;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(193, 155, 87, 0.45);
}

/* Click effect */
.session-btn:active {
  transform: scale(0.96);
}

/* Optional play icon */
.session-btn::before {
  content: "▶";
  font-size: 12px;
}

/* Center button on mobile */
@media (max-width: 768px) {
  .session-btn {
    justify-content: center;
  }
}



.session-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 24px;
  background: #C51B54;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none !important;
  border-radius: 30px;
  box-shadow: 0 6px 14px rgba(193, 155, 87, 0.35);
  transition: all 0.3s ease;
}

/* Remove underline on hover & focus */
.session-btn:hover,
.session-btn:focus,
.session-btn:active {
  text-decoration: none !important;
  color: #ffffff;
}

.session-btn:hover {
  background: #C51B54;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(193, 155, 87, 0.45);
}

/* Play icon */
.session-btn::before {
  content: "▶";
  font-size: 12px;
}/* End custom CSS */