.section-title_d {
    margin-bottom: 80px;
    text-align: center;
    font-size: 50px;
    line-height: 50px;
    color: #e1e1e1;
    position: relative;
}
.section-title_d::after {
    content: "";
    color: #fff;
    background: url(../../assets/images/section-divider.png) no-repeat 0 0;
    height: 15px;
    width: 113px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -40px;
    margin: 0 auto;
}

/* === Resume Section === */
/*---------------------------------------------------------
Resume Timeline
-----------------------------------------------------------*/

/* Experience Item Styling */
.experience-item_d {
  display: flex;
  flex-direction: row;
  gap: 20px;
    color: #E1E1E1;
}

.date {
  font-size: 16px;
  font-weight: 600;
  color: #D66D4B; /* Adjust accent color */
  margin-bottom: 10px;
}

.date-picture img {
  width: auto; /* Adjust image size as needed */
  height: 50px;
}

.experience-right_d h3 {
  font-size: 20px;
  font-weight: 700;
  color: #E1E1E1;
}

.experience-right_d span {
  font-size: 16px;
  color: #E1E1E1;
  margin-bottom: 10px;
  display: block;
}

.experience-right_d p {
  margin: 10px 0;
  line-height: 1.6;
}

/* List Styling for Experience Section */
.list-exp_d {
  padding-left: 20px; /* Indent the list */
  list-style: none; /* Remove default bullets */
}

/* Custom Bullet for List Items */
.list-exp_d li {
  position: relative;
  padding-left: 25px; /* Space for custom bullet */
  margin-bottom: 10px; /* Space between list items */
  font-size: 14px;
  line-height: 1.6;
  color: #E1E1E1; /* Default color for light theme */
  transition: color 0.3s ease;
}

/* Custom Bullet Icon */
.list-exp_d li::before {
  content: '\25A0';  /*Unicode for a bullet (•) */
  position: absolute;
  left: 0;
  top: 0;
  color: #E1E1E1; /* Accent color */
  font-size: 12px;
  /*line-height: 1.2;*/
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .experience-item_d {
    flex-direction: column; /* Stack items vertically on smaller screens */
  }

  .experience-right_d {
    flex: none; /* Reset flex on mobile */
  }
}
/* Styling for Company Name Link */
.experience-right_d span a {
  color: #D66D4B; /* Accent color */
  font-weight: 600; /* Slightly bold to stand out */
  text-decoration: none; /* Remove underline for a cleaner look */
  transition: color 0.3s ease;
}

.experience-right_d span a:hover {
  color: #E1E1E1; /* Slight color change on hover for interaction */
}

/* Enhanced Date Styling */
.date {
  font-size: 16px;
  font-weight: 700;
  color: #6a8d92; /*#A5A59E; /* Slightly lighter, modern color */
  border-bottom: 2px solid #D66D4B; /* Adds emphasis to date */
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.resume-section_d{
  background-color: #393b3b ;
  text: #fff;
}
.resume-section_d > div > div{
    margin-bottom: 60px;
}


.timeline-content_d{
    padding:5px 20px 0 20px;
    color: #fff;
}

.timeline>li .posted-date_d {
    position: relative;
    text-align: center;
    background-color: #393b3b ;
    color: #e1e1e1;
    left: 20px;
}


.timeline>li .posted-date_d .month_d {
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    display: block;
    color: #e1e1e1;
    top: 0;
    float: left;
}


@media(min-width:992px) {

  .timeline-content_d{
      position: relative;
      padding: 24px;
      background-color: #393b3b ;
      color: #fff;
      -webkit-transition:all 400ms;
      -moz-transition:all 400ms;
      -o-transition:all 400ms;
      transition: all 400ms;
  }

  .timeline-content_d::after{
      border: 1px solid #eee;
      width: 100%;
      position: absolute;
      content: "";
      bottom: -3px;
      height:10px;
      left: 0;
      z-index: -1;
  }

  .timeline>li .timeline-content_d:hover {
      background: #2f3131;
  }

  /*.timeline>li .timeline-content_d:hover a{
      color: #393b3b;
  }

  .timeline>li .timeline-content_d:hover a:hover{
      color: #666666;
  }*/

  .timeline>li .posted-date_d {
      left: 50%;
      width: 120px;
      margin-left: -60px;
      margin-top: 28px;
  }
  .timeline>li .posted-date_d .month_d {
      color: #e1e1e1;
      float: none;
  }
  .timeline>li .posted-date_d {
      position: absolute;
      text-align: center;
      background-color: #393b3b ;
  }

}
