.carousel-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.card-item {
  flex: 0 0 33.3333%;
  padding: 20px;
  box-sizing: border-box;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  background: white;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.5s ease;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #666;
  flex-grow: 1;
}

.btn1 {
  margin-top: 15px;
  padding: 8px 20px;
  border-radius: 50px;
}

.highlighted .card {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

@media (max-width: 768px) {
  .card-item {
    flex: 0 0 100%;
  }
}

/* Arrow Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 20;
  cursor: pointer;
}

.carousel-btn:hover {
  background-color: white;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}
/* .btn-outline-light{
  color: #EEF9FF !important;
  border-color:#EEF9FF !important;
} */
 /* .btn1{
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  color: #6B6A75;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border:
1px solid transparent;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    padding: .375rem .75rem;
  font-size: 1rem;
  border-radius:
2px;
  transition:
color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
 }
 .rounded-circle1 {
  border-radius:
50% !important;
}
.btn1-sm, .btn1-group-sm  {
  padding:.25rem .5rem;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  font-size: .875rem;
  border-radius:.2rem;
} */