/* Floating Logos */
.floating-logos-container {
  overflow: hidden;
  height: 600px
}

.floating-logos {
  position: relative;
  background: #fff
}

.bubble-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  position: absolute;
}

.bubble-container .bubble {
  pointer-events: auto;
}

.bubble {
  position: relative;
  width: 151px;
  height: 151px;
  border-radius: 50%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 3px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bubble-label {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  color: #000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  max-width: 180px;
}

.bubble:hover + .bubble-label,
.bubble-container:hover .bubble-label {
  opacity: 1;
}
.logo-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-inner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  margin: auto;
}