/* === Languages & Tools Section === */
#languagesTools {
  padding: 60px 20px;
  background-color: #fdfdfd;
  text-align: center;
}

#languagesTools h2 {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 2.5rem;
}

/* Grid Layout for Tool Cards */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Tool Card */
.tool {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tool:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.tool img {
  max-width: 80px;
  height: auto;
  margin-bottom: 1rem;
}

.tool h3 {
  font-size: 1.4rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.tool p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  #languagesTools h2 {
    font-size: 2rem;
  }

  .tool h3 {
    font-size: 1.2rem;
  }

  .tool p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .tool {
    padding: 1.5rem;
  }

  .tool img {
    max-width: 64px;
  }

  .tool h3 {
    font-size: 1.1rem;
  }
}
