.experiences {
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  background-color: #000;
}

.experiences h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #e4f335;
  font-weight: bold;
}

.experience-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.experience-card {
  width: 150px;
  height: 400px;
  margin: 0 10px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background-color: #222;
  color: #e4f335;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.experience-card.active {
  width: 500px;
  box-shadow: 0 6px 12px rgba(0, 255, 255, 0.7);
  transform: scale(1.05);
}

.experience-logo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.experience-card:hover .experience-logo {
  opacity: 0.8;
}

.experience-details {
  display: none;
  padding: 15px;
  text-align: left;
  background-color: #333;
  color: #b0b0b0;
  border-radius: 0 0 15px 15px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.experience-card.active .experience-details {
  display: block;
}

.experience-card:hover {
  background-color: #444;
  box-shadow: 0 4px 10px rgba(0, 255, 255, 0.5);
}

.experience-card {
  cursor: pointer;
  position: relative;
}

.experience-card::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #e4f335;
  font-size: 24px;
  transition: all 0.3s ease;
}

.experience-card:hover::after {
  transform: translateY(-5px);
  color: #0a9;
}

.experience-details h3,
.experience-details p {
  margin: 0;
  padding: 5px 0;
  color: #e4f335;
}

.experience-details ul {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0;
}
