row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.col-md-4 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.experience-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.experience {
  width: 100%;
  padding: 20px;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.experience:hover {
  background-color: #c0c0c0;
}

.animate-on-hover {
  transition: transform 0.3s ease;
}

.animate-on-hover:hover {
  transform: translateY(-5px);
}

.work-experience {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.experience-item {
  width: 100%;
  padding: 20px;
  background-color: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.experience-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

/* Mobile-friendly styles */
@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.addo-feature {
  margin-bottom: 30px;
}

/* Optional: Adjust the spacing between company sections */
.experience-item {
  margin-bottom: 40px;
}

