/*~~~~~~~~~~~~~~~~~~~~~~~~~~why us ?~~~~~~~~~~~~~~~~~~~*/
.why-us{
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.why-us h2{
  font-size: 30px;
  margin-bottom: 30px;
}

.why-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.why-card{
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

.why-card h3{
  margin-bottom: 10px;
  color: orange;
}