@media only screen and (max-width: 400px) {div#circle-slider {width: 350px !important;}}
@media only screen and (max-width: 1281px) {
	div#circle-slider {width: 400px;}
.circle-item {
  width: 50px !important;
  height: 70px !important;
}
.circle-item-wrapper.active .circle-item {width: 100px !important; height: 140px !important;}
.caption {font-size: 12px; }
.circle-item-wrapper {width: 90px !important;}}


div#slider-container {width: 100%;}

#circle-slider {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0 auto;
}

#circle-slider {
  position: relative;
}

.circle-item-wrapper {
  position: absolute;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.circle-item {
  width: 70px;
  height: 90px;
  border-radius: 20%;
  border: 3px solid transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  object-fit: cover;
  transition: all 0.5s ease;
}
.circle-item-wrapper {
    width: 150px;
}
.active .circle-item {
    width: 200px;
	height: 210px;
}

.caption {
  margin-top: 6px;
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.caption .icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.caption .title-text {
  white-space: nowrap;
}


#active-image-container {
  margin-bottom: 30px;
}

#active-image-container img {
  width: 250px;
  height: 250px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#active-title {
  font-size: 26px;
  margin: 15px 0 8px;
  color: #333;
}

#active-desc {
  font-size: 15px;
  color: #555;
  max-width: 450px;
  margin: 0 auto;
}


.circle-item {
    margin: 24px;

  border-radius: 20%;
  position: absolute;
  cursor: pointer;
  border: 3px solid transparent;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  object-fit: cover;
  transition: all 0.5s ease;
}

.circle-item:hover {
  transform: scale(1.1);
}

.circle-item.active {
  transform: scale(1.3);
  z-index: 10;
}

.circle-item-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

#active-title,
#active-desc {
  transition: all 0.3s ease;
  opacity: 1;
}
.dokmeh-animate {
    animation: pulseDokmeh 0.6s ease;
}
.dokmeh {
  transition: filter 0.4s ease, opacity 0.4s ease;
}

@keyframes pulseDokmeh {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
