.robotic-lab-highlight {
  padding: 40px 20px;
  background: linear-gradient(to bottom right, #e0f7fa, #ffffff);
  text-align: center;
  animation: fadeInUp 1s ease-in-out;
}

.section-title {
  font-size: 36px;
  color: #053b6e;
  margin-bottom: 10px;
  font-weight: bold;
}

.section-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #333;
}

.lab-feature-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lab-card {
  display: flex;
  align-items: center;
  max-width: 1000px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.lab-card:hover {
  transform: scale(1.03);
}

.lab-card img {
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.lab-text {
  padding: 20px;
  text-align: left;
  width: 50%;
}

.lab-text h3 {
  font-size: 22px;
  color: #034f84;
  margin-bottom: 10px;
}

.lab-text p {
  font-size: 16px;
  color: #555;
}

.lab-right {
  flex-direction: row-reverse;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .lab-card {
    flex-direction: column !important;
  }

  .lab-card img,
  .lab-text {
    width: 100%;
  }

  .lab-text {
    text-align: center;
  }
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
