/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/

.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  margin-bottom: 10px;
  padding: 40px 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent; /* Default border */
}

.features-cards .feature-box:hover {
  transform: translateY(-10px); /* 3D pop-out effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
  border-color: var(--accent-color); /* Highlight border color */
}

.features-cards .feature-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: white;
  margin-bottom: 20px;
}

.features-cards .feature-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
  color: white;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  /* color: #edb86e; */
  color: white;
}

.features-cards .feature-box.orange:hover {
  border-color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  /* color: #20a5f8; */
  color: white;
}

.features-cards .feature-box.blue:hover {
  border-color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  /* color: #48c88a;    */
  color: white;
}

.features-cards .feature-box.green:hover {
  border-color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  /* color: #f28484; */
  color: white;
}

.features-cards .feature-box.red:hover {
  border-color: #f28484;
}
