.elementor-6559 .elementor-element.elementor-element-e1f557b{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-8e0588c *//* Trinite Construction Section */
.trinite-construction-section {
  background: linear-gradient(180deg, #E8F4F8 0%, #D4EDF4 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.trinite-construction-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(28, 168, 109, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.trinite-construction-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: rgba(57, 82, 199, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

/* Header */
.construction-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(28, 168, 109, 0.1);
  color: #1CA86D;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.construction-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #1a2b4a;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.construction-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  background: linear-gradient(135deg, #1CA86D 0%, #20B2AA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px 0;
}

.construction-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #5a6a7a;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.construction-description strong {
  color: #1a2b4a;
}

/* Progress Bar */
.progress-container {
  max-width: 700px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #5a6a7a;
}

.progress-percent {
  font-weight: 700;
  color: #3952C7;
}

.progress-bar {
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #1CA86D 0%, #20B2AA 50%, #3952C7 100%);
  border-radius: 20px;
  transition: width 1.5s ease-out;
  animation: progressAnimation 1.5s ease-out;
}

@keyframes progressAnimation {
  from { width: 0%; }
}

/* Timeline */
.timeline-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 28px;
  top: 30px;
  bottom: 30px;
  width: 3px;
  background: linear-gradient(180deg, #1CA86D 0%, #3952C7 100%);
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.1s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.3s; }
.timeline-item:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Timeline Dots */
.timeline-dot {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.1);
}

.timeline-item.completed .timeline-dot {
  background: #1CA86D;
  color: white;
  box-shadow: 0 0 0 8px rgba(28, 168, 109, 0.2);
}

.timeline-item.in-progress .timeline-dot {
  background: #3952C7;
  color: white;
  box-shadow: 0 0 0 8px rgba(57, 82, 199, 0.2);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(57, 82, 199, 0.2); }
  50% { box-shadow: 0 0 0 16px rgba(57, 82, 199, 0.1); }
}

.timeline-item.planned .timeline-dot {
  background: #e8eef3;
  color: #7a8a9a;
  box-shadow: 0 0 0 8px rgba(200, 210, 220, 0.3);
}

/* Timeline Cards */
.timeline-card {
  flex: 1;
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.timeline-item.completed .timeline-card {
  border-color: rgba(28, 168, 109, 0.3);
  background: linear-gradient(135deg, rgba(28, 168, 109, 0.05) 0%, white 100%);
}

.timeline-item.in-progress .timeline-card {
  border-color: rgba(57, 82, 199, 0.3);
  background: linear-gradient(135deg, rgba(57, 82, 199, 0.05) 0%, white 100%);
}

.timeline-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.timeline-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2b4a;
  margin: 0;
}

.timeline-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #5a6a7a;
  margin: 0;
  line-height: 1.5;
}

/* Status Badges */
.status-badge {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
}

.status-badge.completed {
  background: #1CA86D;
  color: white;
}

.status-badge.in-progress {
  background: #3952C7;
  color: white;
}

.status-badge.planned {
  background: #e8eef3;
  color: #5a6a7a;
}

/* CTA Button */
.construction-cta {
  text-align: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: #3952C7;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(57, 82, 199, 0.35);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #2d42a8;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(57, 82, 199, 0.45);
  color: white;
}

.cta-button svg {
  transition: transform 0.3s ease;
}

.cta-button:hover svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .trinite-construction-section {
    padding: 60px 16px;
  }
  
  .timeline-container {
    padding-left: 20px;
  }
  
  .timeline-line {
    left: 18px;
  }
  
  .timeline-dot {
    width: 44px;
    height: 44px;
  }
  
  .timeline-dot svg {
    width: 18px;
    height: 18px;
  }
  
  .timeline-card {
    padding: 18px;
  }
  
  .timeline-card-header {
    flex-direction: column;
    gap: 8px;
  }
  
  .cta-button {
    padding: 16px 28px;
    font-size: 15px;
  }
}/* End custom CSS */