.carousel-indicators {
  bottom: 10px;
  /* adjust vertical position */
}


.carousel-img {
  height: 300px;
  object-fit: cover;
}

@media (max-width: 576px) {
  .carousel-img {
    height: 180px;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='448' viewBox='0 0 320 448'%3E%3Cpath style='fill:%23ffffff;fill-opacity:1;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none' d='M203.563 988.362 240 950.902l-119.193-122.54L240 705.822l-36.437-37.46-36.404 37.426.034.034L48 828.362l119.193 122.54-.033.034z' transform='translate(0 -604.362)'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='448' viewBox='0 0 320 448'%3E%3Cpath style='fill:%23ffffff;fill-opacity:1;stroke-width:32;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none' d='M116.437 988.362 80 950.902l119.193-122.54L80 705.822l36.437-37.46 36.404 37.426-.034.034L272 828.362l-119.193 122.54.033.034z' transform='translate(0 -604.362)'/%3E%3C/svg%3E");
}

.circle-card {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  cursor: pointer;
}

.circle-card:hover {
  transform: scale(1.05);
}

.circle-icon {
  width: 50%;
  height: auto;
  object-fit: contain;
}

.locked-contact {
  position: relative;
}

.locked-contact .blurred {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}

.locked-contact .lock-icon {
  color: #aaa;
  margin-left: 6px;
}

.carousel-inner {
  margin-top: 50px;
}

.card {
  padding-top: 20px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 12px;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.card:hover {
  transform: translateY(-5px);
}

.card-img-top {
  width: 50px !important;
  height: 50px !important;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.navbar-brand img {
  width: 80px !important;
  height: auto;
}

.modal-content-title {
  font-weight: bold;
}

/* #myCarousel .carousel-item {
  height: 500px;
}
#myCarousel .carousel-item img {
  height: 100%;
  object-fit: cover;
} */

body.modal-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}