.odometer-container,
.odometer-inside {

  display: flex;
}

html[dir="rtl"] .odometer-container {
  direction: ltr;
  text-align: right;
  justify-content: flex-end;
}

.brandSwiper {
  overflow: visible;
}

/* ترتيب الشرائح حول دائرة نصف قطرها 100 */
.social-wheel .swiper-wrapper {
  position: relative;
  width: 256px;
  /* ضعف centerX */
  height: 256px;
  /* ضعف centerY */
  margin: 0 auto;
  transform-style: preserve-3d;
}

/* ترتيب الشرائح بشكل نصف دائرة */
.social-wheel .swiper-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48px !important;
  height: 48px;
  margin: -24px 0 0 -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* لتوسيط الأيقونة */
  transition: transform 0.5s ease;
}

/* نوزع الشرائح يدوياً حسب index */
.social-wheel .swiper-slide:nth-child(1) {
  transform: rotate(270deg) translate(-100px) rotate(-270deg);
}

.social-wheel .swiper-slide:nth-child(2) {
  transform: rotate(315deg) translate(-100px) rotate(-315deg);
}

.social-wheel .swiper-slide:nth-child(3) {
  transform: rotate(0deg) translate(-100px) rotate(0deg);
}

.social-wheel .swiper-slide:nth-child(4) {
  transform: rotate(45deg) translate(-100px) rotate(-45deg);
}

.social-wheel .swiper-slide:nth-child(5) {
  transform: rotate(90deg) translate(-100px) rotate(-90deg);
}

/* العنصر النشط (المركزي) */
.social-wheel .swiper-slide-active {
  border: 2px solid white;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.4);
}