.technologySection {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* Space between items */
}

.logo-item {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 20%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
}

.logo-item img {
  width: 60%; /* Ensures proper size within the circular shape */
  height: 60%; /* Ensures aspect ratio is preserved */
  object-fit: contain; /* Ensures the image fits within the circle without distortion */
}

.logo-item:hover {
  transform: scale(1.1);
  background: #f0f9ff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.tooltip {
  position: absolute;
  bottom: 80%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.logo-item:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.disclaimer {
  display: flex;
  justify-content: flex-end;
  margin: 20px auto;
  margin-top: 50px;
  margin-bottom: 0px;
  font-size: 14px;
  color: #555;
  position: relative;
}

.disclaimer-tooltip {
  display: none;
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 12px;
  text-align: justify;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.treadMark {
  cursor: pointer;
}

.treadMark:hover + .disclaimer-tooltip {
  display: block;
}
