/* =========================================
   FEATURES SECTION
========================================= */

/* Grid layout */
.features-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 30px;
}


/* Feature card */
.feature-box {

  background-color: var(--white-color);

  padding: 40px 30px;

  border-radius: 25px;

  text-align: center;

  box-shadow: 0 10px 25px rgba(0,0,0,0.06);

  transition: 0.3s ease;
}


/* Hover effect */
.feature-box:hover {

  transform: translateY(-8px);
}


/* Icon circle */
.feature-icon {

  width: 70px;
  height: 70px;

  display: flex;

  justify-content: center;
  align-items: center;

  margin: auto;

  background-color: rgba(192,132,252,0.12);

  border-radius: 50%;

  font-size: 32px;

  margin-bottom: 20px;
}


/* Title */
.feature-box h3 {

  margin-bottom: 15px;

  color: var(--primary-color);
}