/* section{
    background-color:#111;
    color: #ddd;
} */

/* style.css - Enhanced Timeline Styling */
.experience-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f0f0f, #181818);
  color: #f0f0f0;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 40px;
  color: #ffe600;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 17px;
  color: #ccc;
}

.timeline {
  position: relative;
  padding-left: 40px;
  border-left: 4px solid #2a2a2a;
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: -13px;
  width: 20px;
  height: 20px;
  background: #ffe600;
  border: 3px solid #121212;
  border-radius: 50%;
  box-shadow: 0 0 10px #ffe60099;
}

.timeline-content {
  background: rgba(25, 25, 25, 0.9);
  border: 1px solid #333;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: #ffe600;
  transform: scale(1.015);
}

.timeline-content h3 {
  font-size: 22px;
  color: #ffe600;
  margin-bottom: 6px;
}

.timeline-content h4 {
  font-size: 16px;
  color: #00c4ff;
  margin-bottom: 12px;
}

.timeline-content p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

.timeline-content blockquote {
  background-color: #1a1a1a;
  border-left: 4px solid #ff2d75;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 6px;
  font-style: italic;
  color: #aaa;
}

.badges {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 8px;
  background-color: #ffe60022;
  color: #ffe600;
  border-radius: 6px;
  font-size: 13px;
  font-family: monospace;
}

.timeline-item.future .timeline-content {
  border-style: dashed;
  background: #202020;
  text-align: center;
}

.timeline-item.future blockquote {
  border-left-color: #00ffa2;
}

@media (max-width: 768px) {
  .timeline {
    padding-left: 20px;
  }

  .timeline-dot {
    left: -11px;
    width: 18px;
    height: 18px;
  }

  .timeline-content {
    padding: 25px;
  }
}
