.mc-border:hover {
  transform: translateY(-5px); /* Lift the card slightly */
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15); /* Add a soft shadow */
  border-image: linear-gradient(45deg, #6effca, #f573ff) 1; /* Hover gradient effect */
}

.mc-border {
  width: 100%;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border: 2px solid; /* Increase border width */
  border-image: linear-gradient(45deg, #ff6ec4, #7873f5) 1; /* Cool gradient border */
  margin-bottom: 30px;
  transition: border-color 0.3s ease-in-out;
}

.mc-inner:hover {
  border-color: #000;
}

.wrap {
  height: 100%;
  position: relative;
}

.mc-inner {
  width: 100%;
  margin: 0 auto;
  background: white;
  text-align: center;
  border-bottom: 2px solid #ccc;
  transition: .2s linear;
}

.model-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.mc-border:hover .model-wrap:after {
  opacity: 1;
  transform: scale(1);
}

.model-wrap:after {
  content: '';
  background: rgba(0,0,0,0.48);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  transform: scale(.3);
  transition: .3s ease-in-out;
}

.model-wrap img {
  width: 100%;
  height: auto;
}

.mc-border:hover .view-pro-btn {
  opacity: 1;
}

.view-pro-btn {
  position: relative;
  margin-top: 10px;
  opacity: 1;
}

.view-pro-btn a:hover {
  background-color: rgb(218, 216, 216);
  color: black;
}

.view-pro-btn a {
  color: white;
  background-color: #000;
  text-decoration: none;
  display: block;
  border: 1px solid white;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0.5em 1em;
  font-size: 14px;
  line-height: 1.6;
  outline: none;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-width: 160px;
  margin: 5px auto;
  transition: 0.3s ease-in-out;
}

.view-pro-btn a:hover:after {
  left: 0%;
}

.view-pro-btn a:after {
  content: "";
  position: absolute;
  left: -220%;
  top: -500%;
  width: 140%;
  height: 1000%;
  transform: rotate(45deg);
  background: white;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.view-pro-btn svg {
  width: 20px; /* Adjust width as needed */
  height: 20px; /* Adjust height as needed */
  vertical-align: middle; /* Align SVG icon with text */
  fill: currentColor; /* Ensure SVG color matches text color */
  margin-right: 8px; /* Space between icon and text */
}

.model-info {
  padding-bottom: 0px;
  font-family: 'Noto Sans', sans-serif;
  padding-top: 0px;
}

.model-title {
  font-weight: normal;
  font-family: "Open Sans";
  font-size: 18px;
  padding-top: 0px;
}

.mc-border:hover .view-pro-btn {
  opacity: 1;
}

.model-title a {
  color: #333;
}

.mc-inner:hover .model-title a {
  color: #000000;
  text-decoration: none;
}

.mc-border:hover .model-title a {
  color: #000;
}

/* @media (max-width: 480px) {
  .model-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .view-pro-btn a {
    font-size: 10px;
    padding: 0.3em 0.6em;
    min-width: 100px;
  }

  .view-pro-btn svg {
    width: 14px;
    height: 14px;
  }

  .mc-border {
    padding: 10px;
    margin-bottom: 15px;
  }
} */