/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 20px;
  text-align: center;
  max-width: 1265px;
  margin: 0 auto;
  background: linear-gradient(120deg, #0a0a0a, #1a1a1a);
  color: #e0e0e0;
}

.why-choose-us h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: #00ff88;
}

.why-choose-us .sub-title {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.feature-card {
  background: transparent;
  color: #e0e0e0;
  width: 250px;
  text-align: left;
  padding: 15px;
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
}



.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .icon {
  
  font-size: 4rem;
  margin-bottom: 15px;
  color: #ffffff;
  transition: color 0.3s;
   /* display: flex;            make it a flex container */
  justify-content: center;  /* center horizontally */
  align-items: center; 
}

.feature-card:hover .icon {
  color: #00ff88;
}

.feature-card h4 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #00ff88;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .feature-card { width: 45%; }
}

@media (max-width: 768px) {
  .feature-card { width: 100%; }
}
