.skills_section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.skills_container {
  max-width: 1100px;
  margin: 0 auto;
}

.skills_section .heading_container {
  text-align: center;
  margin-bottom: 50px;
}

.skills_section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #00204a;
}

.skills_section h2 span {
  color: #00bbf0;
}

/* The Grid Logic */
.skills_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.skill_box {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.skill_box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border-bottom: 4px solid #00bbf0;
}

.icon_box {
  font-size: 40px;
  color: #00204a;
  margin-bottom: 20px;
}

.skill_box h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #00204a;
}

.skill_box p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}