/* Feature Cards Styling */
.feature-card {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  border: none;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-card .card-body {
  padding: 2rem 1.5rem;
}

/* Icon styling with !important to override Bootstrap */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff7e00 !important; /* Orange with !important */
  color: white !important; /* White with !important */
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon i {
  color: white !important; /* Ensure icon is white */
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(255, 126, 0, 0.2);
}

.feature-card h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Button styling with !important to override Bootstrap */
.feature-btn {
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-width: 2px;
  color: #ff7e00 !important; /* Orange with !important */
  border-color: #ff7e00 !important; /* Orange with !important */
  background-color: transparent !important; /* Ensure background is transparent */
}

.feature-btn:hover {
  background-color: #ff7e00 !important; /* Orange with !important */
  border-color: #ff7e00 !important; /* Orange with !important */
  color: white !important; /* White with !important */
  transform: scale(1.05);
}

/* Override Bootstrap's btn-outline-primary */
.btn-outline-primary.feature-btn {
  color: #ff7e00 !important;
  border-color: #ff7e00 !important;
}

.btn-outline-primary.feature-btn:hover {
  background-color: #ff7e00 !important;
  color: white !important;
}

/* Add some spacing for the section */
.features-section {
  padding: 4rem 0;
}

@media (max-width: 768px) {
  .feature-card {
    margin-bottom: 2rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
  }
}
