main {
  padding: 60px 100px; /* Add horizontal padding */
  background-color: #e8e8e8;
  min-height: calc(100vh - 70px);
}

.my-experiences {
  font-size: 48px;
  font-weight: normal;
  color: #1a1a1a;
  margin-bottom: 50px; /* Increase spacing below header */
  max-width: 1400px; /* Contain width */
  margin-left: auto;
  margin-right: auto;
}

.row {
  max-width: 1400px; /* Contain the cards grid */
  margin: 0 auto; /* Center the grid */
}

.experience-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%; /* Ensure cards have equal height */
}
.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.company-logo {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.dtcc-logo {
  background-color: white;
}

.job-title {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.job-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.tech-stack-label {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  background-color: #6c5ce7;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.experience-details {
  padding: 25px;
  background-color: #f5f5f5;
}
