/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by core values card.
 * File         : core-values.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Core Values Section Styles
----------------------------------------------------*/

.core-values-card-icon {
  height: 55px;
  width: 55px;
  border-radius: 10px;
  background-color: rgba(var(--brand), 0.1);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.core-values-card-icon img {
  max-width: 40px;
  width: 100%;
  height: auto;
}
.core-values-card {
  background: linear-gradient(
    117.1deg,
    rgba(var(--brand), 0.05) 35.08%,
    rgba(var(--brand-secondary), 0.15) 105.57%
  );
  box-shadow: 0px 0px 114.96px 0px rgba(var(--black), 0.1);
  backdrop-filter: blur(200px);
  overflow: hidden;
  position: relative;
}
.core-values-card:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: -2;
  transition: 0.4s;
  border-radius: 12px;
}
.row > .col-lg-4:nth-child(odd) .core-values-card:after {
  left: 100%;
  top: 100%;
}
.row > .col-lg-4:nth-child(even) .core-values-card:after {
  right: 100%;
  bottom: 100%;
}
.row > .col-lg-4:nth-child(odd) .core-values-card:hover::after {
  left: 0;
  top: 0;
}
.row > .col-lg-4:nth-child(even) .core-values-card:hover::after {
  right: 0%;
  bottom: 0%;
}
.row > .col-lg-4:nth-child(5n + 1) .core-values-card:after {
  background: linear-gradient(
    147.64deg,
    rgba(var(--warning), 0.05) 19.39%,
    rgba(var(--warning), 0.25) 101.09%
  );
}
.row > .col-lg-4:nth-child(5n + 1) .gradient-border::before {
  background: linear-gradient(
    134.5deg,
    rgba(var(--warning), 0.8) -12.56%,
    rgba(var(--white), 0.1) 41.56%
  );
}
.row > .col-lg-4:nth-child(5n + 2) .core-values-card:after {
  background: linear-gradient(
    147.64deg,
    rgba(var(--brand), 0.1) 19.39%,
    rgba(var(--brand), 0.25) 101.09%
  );
}
.row > .col-lg-4:nth-child(5n + 2) .gradient-border::before {
  background: linear-gradient(
    310.22deg,
    rgba(var(--brand), 1) -23.51%,
    rgba(var(--brand), 0.1) 38.68%
  );
}
.row > .col-lg-4:nth-child(5n + 3) .core-values-card:after {
  background: linear-gradient(
    147.64deg,
    rgba(var(--yellow), 0.05) 19.39%,
    rgba(var(--yellow), 0.25) 101.09%
  );
}
.row > .col-lg-4:nth-child(5n + 3) .gradient-border::before {
  background: linear-gradient(
    134.5deg,
    rgba(var(--yellow), 0.8) -12.56%,
    rgba(var(--yellow), 0.1) 41.56%
  );
}
.row > .col-lg-4:nth-child(5n + 4) .core-values-card:after {
  background: linear-gradient(
    147.64deg,
    rgba(var(--indigo), 0.1) 19.39%,
    rgba(var(--indigo), 0.25) 101.09%
  );
}
.row > .col-lg-4:nth-child(5n + 4) .gradient-border::before {
  background: linear-gradient(
    310.22deg,
    rgba(var(--indigo), 1) -23.51%,
    rgba(var(--indigo), 0.1) 38.68%
  );
}
.row > .col-lg-4:nth-child(5n + 5) .core-values-card:after {
  background: linear-gradient(
    147.64deg,
    rgba(var(--neon), 0.05) 19.39%,
    rgba(var(--neon), 0.25) 101.09%
  );
}
.row > .col-lg-4:nth-child(5n + 5) .gradient-border::before {
  background: linear-gradient(
    310.22deg,
    rgba(var(--neon), 1) -23.51%,
    rgba(var(--neon), 0.1) 38.68%
  );
}
