/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by features  components.
 * File         : features.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Features Component Styles
----------------------------------------------------*/
.features-card-icon img {
  max-width: 80px;
  width: auto;
  transition: 0.5s;
}
.features-card {
  padding: 32px;
  border-radius: 20px;
  background: rgba(var(--white), 0.05);
  backdrop-filter: blur(20px);
  cursor: pointer;
}
.features-card-glow .features-card-icon {
  margin-top: 80px;
}
.features-card-glow:after {
  content: "";
  position: absolute;
  height: 120%;
  width: 120%;
  border-radius: 50%;
  background-color: rgba(var(--yellow), 1);
  filter: blur(40px);
  top: -194px;
  left: 41%;
  opacity: 0.4;
  transition: 0.5s;
  z-index: -2;
}
.features-card-glow:before {
  content: "";
  position: absolute;
  height: 155px;
  width: 188px;
  border-radius: 100px;
  background-color: rgba(var(--black), 1);
  filter: blur(20px);
  right: -84px;
  top: -64px;
  opacity: 0.6;
  z-index: -1;
}
.features-card-glow:hover::after {
  top: -184px;
  left: 30%;
}
.features-card:hover .features-card-icon img {
  transform: translateY(-10px);
}
.row > div:nth-child(2) .features-card-glow:after {
  background: linear-gradient(
    117.1deg,
    rgba(var(--brand), 1) 35.08%,
    rgba(var(--brand-secondary), 1) 105.57%
  );
}
.features-card-thumbnail img {
  transition: 0.5s;
  transform: scale(0.9);
  max-height: 229px;
  height: auto;
  object-fit: contain;
}
.features-card:hover .features-card-thumbnail img {
  transform: scale(1);
}
