.btn {
  background: linear-gradient(to right, #F39C12, #E67E22);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(243, 156, 18, 0.3);
}

.btn:hover {
  background: linear-gradient(to right, #E67E22, #D35400);
  transform: scale(1.05);
}

.tech-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0px 4px 6px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease-in-out;
}

.tech-icon:hover {
  transform: scale(1.2);
}

.gallery-img {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out;
}

.gallery-img:hover {
  transform: scale(1.1);
}