
/* Initially, the text color will be blue */
#wellnessTitle {
  color: blue;
  transition: color 0.3s ease; /* Smooth transition for color change */
}



.card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
    transition: all 0.3s ease-in-out;
}
.card-title {
    font-weight: 600;
}
.modal-content {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.btn-outline-primary {
    border-radius: 20px;
}
.product-modal-content {
    align-items: flex-start;
}

.product-modal-image {
    flex: 1;
    max-width: 50%;
}

.product-modal-details {
    flex: 1;
    max-width: 50%;
}

@media (max-width: 767.98px) {
    .product-modal-image,
    .product-modal-details {
        max-width: 100%;
    }
}

  .carousel-item img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }

    .carousel-caption {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 12px;
      padding: 20px;
    }

   @media (max-width: 767px) {
  .carousel-item img {
    height: 50vh;
    width: 100%; /* Ensures image fills the container horizontally */
    object-fit: cover; /* Optional: keeps the image aspect-ratio visually clean */
  }
}
