/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 10 2025 | 12:20:05 */


.my-4d-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  
}



.my-4d-header p {
  font-size: 1.1rem;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.timeline-wrapper {
  position: relative;
  padding: 0px 0;
}

/* Vertical Line */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg,
    transparent 0%,
    #F37737 10%,
    #F37737 90%,
    transparent 100%
  );
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Alternating Layout */
.timeline-item:nth-child(odd) {
  justify-content: flex-end;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
}

/* Content Box */
.timeline-content {
  width: 42%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #F5F5F52E;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.04);

	border: 2px solid rgba(243, 119, 55, 0.25);
  box-shadow: 0 12px 40px rgba(243, 119, 55, 0.25);
}

/* Arrows */
.timeline-item:nth-child(odd) .timeline-content::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(180deg); /* rotated */
  border-left: 16px solid rgba(243, 119, 55, 0.3);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}


.timeline-item:nth-child(even) .timeline-content::before {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(180deg); /* rotated arrow */
  border-right: 16px solid rgba(243, 119, 55, 0.3);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}


/* Center Dots */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #F37737 0%, #ff8c52 100%);
  border-radius: 50%;
  border: 5px solid #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 900;
  color: #ffffff;
  z-index: 10;
  box-shadow: 0 0 25px rgba(243, 119, 55, 0.6);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 40px rgba(243, 119, 55, 0.8);
}

/* Step Content */
.step-number {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(243, 119, 55, 0.15);
  position: absolute;
  top: -10px;
  right: 15px;
  line-height: 1;
}

.timeline-item:nth-child(even) .step-number {
  right: auto;
  left: 15px;
}

.step-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #F37737;
  margin-bottom: 10px;
}

.step-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

.step-icon {
  width: 60px;
  height: 60px;
   background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 1.7rem;
}

/* Responsive */
@media (max-width: 968px) {
  .my-4d-header h1 {
    font-size: 2.3rem;
  }

  .my-4d-header p {
    font-size: 1rem;
  }

  .timeline-wrapper::before {
    left: 30px;
  }

  .timeline-item {
    justify-content: flex-start !important;
    padding-left: 70px;
    margin-bottom: 60px;
  }

  .timeline-content {
    width: 100%;
    padding: 25px;
  }

  .timeline-dot {
    left: 30px;
    width: 55px;
    height: 55px;
    font-size: 1.3rem;
  }

  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -16px;
    right: auto;
    border-right: 16px solid rgba(243, 119, 55, 0.3);
    border-left: none;
  }

  .step-number {
    font-size: 3rem;
  }

  .step-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .my-4d-container {
    padding: 20px 1px;
  }

  .my-4d-header h2 {
    font-size: 1.5rem;
  }

  .timeline-item {
    padding-left: 60px;
    margin-bottom: 50px;
  }

  .timeline-wrapper::before {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .step-number {
    font-size: 2.5rem;
  }

  .step-title {
    font-size: 1.3rem;
  }

  .step-description {
    font-size: 0.95rem;
  }
}

/* Scroll Animation */
.fade-scroll {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

.fade-scroll.show {
  opacity: 1;
  transform: translateY(0);
}


