.social-menu {
  position: fixed;
  width: 330px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 85%;
  left: 3%;
  transform: translate(-50%, -50%);
  z-index: 50000;
}
/* Mobile screen */
@media (max-width: 768px) {
    .social-menu {
  position: fixed;
  width: 330px;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 85%;
  left: 15%;
  transform: translate(-50%, -50%);
  z-index: 50000;
}
}
.social-menu .social-toggle {
  position: relative;
  height: 60px;
  width: 60px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 2rem;
  cursor: pointer;
  transition: 1.25s;
  z-index: 50000;
}
.social-menu.active .social-toggle {
  transform: rotate(360deg);
  box-shadow:
    0 6px 8px rgba(0, 0, 0, 0.15),
    0 0 0 2px #333,
    0 0 0 8px #fff;
}
.social-menu li {
  position: absolute;
  left: 0;
  list-style: none;
  transition: 0.5s;
  transform: rotate(calc(360deg / 8 * var(--i)));
  transform-origin: 140px;
  scale: 0;
  transition-delay: calc(0.05s * var(--i));
}
.social-menu.active li {
  scale: 1;
}
.social-menu li a {
  position: relative;
  display: flex;
  transform: rotate(calc(360deg / -8 * var(--i)));
  width: 60px;
  height: 60px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--clr);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: 0.5s;
  text-decoration: none;
}
.social-menu li:hover a {
  font-size: 2.5rem;
  box-shadow:
    0 0 0 2px var(--clr),
    0 0 0 6px #fff;
}

.brand-one {
  margin-top: 100px;
  margin-bottom: 100px;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.logo-track {
  display: flex;
  gap: 30px;
  animation: scroll 30s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 12 - 30px * 12));
  }
}

.logo-item {
  flex-shrink: 0;
  width: 250px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-item {
    width: 200px;
    height: 100px;
  }

  .logo-track {
    gap: 20px;
  }
}
