/* Features Banner Section Styles */

.features-banner {
  background: transparent;
  border-top: 1px solid #F0F0F0;
}

.feature-item {
  padding: 30px 20px;
  border-radius: 8px;
}

/* .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
} */

/* Feature Icons - Outline Style */
.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E63946;
  border-radius: 50%;
}

.feature-icon i {
  font-size: 36px;
  color: #E63946;
}

/* .feature-item:hover .feature-icon {
  background: #E63946;
  transform: scale(1.1);
}

.feature-item:hover .feature-icon i {
  color: #FFFFFF;
} */

/* Feature Title */
.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
  font-family: "Hind", sans-serif;
}

/* Feature Text */
.feature-text {
  font-size: 16px;
  color: #4A4A4A;
  margin: 0;
  line-height: 1.5;
}

.feature-text .highlight {
  color: #E63946;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 991px) {
  .feature-icon {
    width: 70px;
    height: 70px;
  }

  .feature-icon i {
    font-size: 32px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-text {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .features-banner {
    padding: 20px 0;
  }

  .features-banner .row {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
  }

  .features-banner .row > [class*="col-"] {
    flex: 1;
    max-width: 33.33%;
    padding: 0 5px;
  }

  .feature-item {
    padding: 15px 5px;
    margin-bottom: 0;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
  }

  .feature-icon i {
    font-size: 20px;
  }

  .feature-title {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .feature-text {
    font-size: 11px;
  }
}

/* Animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-item {
  animation: fadeInUp 0.6s ease-out;
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}
