.collaborate-section {
  height: 30vh;
  width: 100%;
  background-color: #5a2ec3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #e7d9fd;
  transition: background 0.3s;
  margin-bottom: 20px;
}

.collaborate-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

.collaborate-text p {
  font-size: 1.5rem;
  margin: 1rem 0 2rem;
  color: #f6e3f0;
}

.get-in-touch-circle {
  display: inline-block;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.4s ease;
  background-color: #e7d9fd;
  color: #5a2ec3;
  text-decoration: none;
  padding: 1rem;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  position: absolute;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%) scale(0.5);
}

.collaborate-section:hover .get-in-touch-circle {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
