

#featurescontaint{
  font-family: 'Arial', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  color: #fff;
}

.fht {
  margin-bottom: 30px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
}

/* Features grid container */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  width: 100%;
  padding: 20px;
}

/* Individual feature styling */
.feature {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.icon {
  font-size: 3rem;
  margin-bottom: 15px;
 /* Icon color for added vibrancy */
  color: #007bff;
  
}

.ftitle {
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.fdesc {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Add a hover color change for icons */
.feature:hover .icon {
  color: #ff6f61; 
}
