.about-image-wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px; /* Ensures space for centering */
}

.centered-img {
  max-width: 90%;
  height: auto;
}

.about-image-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: 1.25rem;
}

.experience-badge {
  width: 120px;
  height: 120px;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgb(3, 196, 254), rgb(246, 78, 183));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.about-shape1,
.about-shape2 {
  z-index: 2;
  width: 50px;
  height: 50px;
}

.about-shape1 img,
.about-shape2 img {
  width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
