.elementor-358 .elementor-element.elementor-element-eb63d29{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4780029 */@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&amp;display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 0;
}

.urban-timeline {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 30px;
  text-align: center;
}

.urban-timeline h2 {
  font-size: 38px;
  font-weight: 700;
  color: #005c83;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.urban-timeline p.subtitle {
  color: #555;
  font-size: 16px;
  margin-bottom: 60px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
}

/* GARIS TENGAH FUTURISTIK */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #005c83, #00b3b7, #5ec8e5);
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0,179,183,0.4);
  z-index: 0;
}

.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  gap: 40px;
  flex-wrap: wrap;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

/* TITIK NEON */
.timeline-item::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, #5ec8e5 0%, #00b3b7 60%, #005c83 100%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 20px rgba(94,200,229,0.8);
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 28px;
  border-radius: 16px;
  background: #ffffff;
  position: relative;
  z-index: 2;
  transition: all 0.35s ease;
  
  /* Gradient border effect */
  border: 1px solid transparent;
  background-image: 
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, #005c83, #00b3b7, #5ec8e5);
  background-origin: border-box;
  background-clip: padding-box, border-box;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.timeline-content:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,179,183,0.25);
}

.timeline-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #005c83;
  margin-bottom: 12px;
}

.timeline-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 60px;
}

.timeline-img {
  flex: 1;
  text-align: center;
}

.timeline-img img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.timeline-img img:hover {
  transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .timeline-item::before {
    left: 0;
    transform: translateX(0);
  }

  .timeline-content, 
  .timeline-img {
    width: 100%;
    margin: 0 !important; 
  }
}/* End custom CSS */