.skills-section {
  /* background: #f4f7fa; */
  background: #F9F9F9;
  padding: 70px 20px;
}

.skills-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  
}

/* Rest of your skills section remains unchanged */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.skill-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.skill-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.skill-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.skill-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.skill-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.skill-card ul li {
  font-size: 15px;
  color: #555;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.skill-card ul li:last-child {
  border-bottom: none;
}
.skill-icon {
  font-size: 2rem;  /* icon size */
  color: #007bff;   /* icon color */
  margin-bottom: 8px;
}
