.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-c123269 *//* Timeline Section Wrapper */
.custom-timeline {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

/* Each Row */
.timeline-row {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 40px;
  animation: fadeInUp 1.2s ease;
}

/* Reverse row layout */
.timeline-row.reverse {
  flex-direction: row-reverse;
}

/* Image Styling */
.timeline-image {
  flex: 1;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Content Styling */
.timeline-content {
  flex: 1;
}

.timeline-content h4 {
  font-size: px;
  color: #ff4c29; /* Accent color */
  margin-bottom: 8px;
  font-weight: 600;
}

.timeline-content h2 {
  font-size: 55px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #111;
}

.timeline-content p {
  font-size: px;
  line-height: 1.6;
  color: #444;
}

/* Fade-in Animation */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .timeline-row, .timeline-row.reverse {
    flex-direction: column;
  }
  .timeline-image {
    width: 100%;
    min-height: 200px;
  }
  .timeline-content {
    text-align: center;
  }
}/* End custom CSS */