/* Word Counter */
.section.word-counter {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
  padding: 70px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 20px;
  transition: background 0.5s ease-in-out;
  color: #222;
}

.counter-box {
  background: #fff;
  max-width: 600px;
  margin: 30px auto;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.counter-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.text-input {
  width: 100%;
  height: 150px;
  padding: 15px;
  font-size: 1.5rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  resize: none;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.text-input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.3);
}

.counter-results {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a202c;
}

.counter-results p {
  background: #f5f5f5;
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}
