.aboutsec6 {
  padding: 0px 10px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.aboutsec6-container {
  max-width: 1200px;
  margin: 0 auto;
}
.aboutsec6-logos {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.aboutsec6-logo img {
  width: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.aboutsec6-logo img:hover {
  transform: scale(1.1);
}

.jus img {
  border-radius: 80%;
  height: 70px;
  width:70px ;
}

.aboutsec6-info {
  display: none;
  background: #fffaf5;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 25px;
  margin-top: 15px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease-in-out;
}

.aboutsec6-info.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.aboutsec6-menu-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.aboutsec6-menu {
  display: flex;
  gap: 5px;

  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  scrollbar-width: none;
}

.aboutsec6-menu::-webkit-scrollbar {
  display: none;
}

.aboutsec6-menu-item {
  flex: 0 0 auto;
  width: 150px;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: scale(0.9);
  transition: transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.aboutsec6-menu-item i {
  font-size: 1.5rem;
  color: #bd976d;
}

.aboutsec6-menu-item:hover {
  background: #bd976d;
  color: #fff;
  transform: scale(1.05);
}

.aboutsec6-menu-item:hover i {
  color: #fff;
}

.aboutsec6-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #bd976d;
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 50%;  margin: 0px 10px;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  z-index: 5;
}

.aboutsec6-arrow.left { left: -10px; }
.aboutsec6-arrow.right { right: -10px; }

.aboutsec6-arrow:hover {
  background: #a67a52;
}

@media (max-width: 768px) {
  .aboutsec6-logo img { width: 70px; }
}

@media (max-width: 480px) {
  .aboutsec6-logo img { width: 55px; }
  .aboutsec6-info { padding: 15px; }
}
