/* Hero Section 2 Styling */
.contact-hero-section {
  background: url('https://img.freepik.com/free-vector/online-support-service-isometric-composition_1284-63839.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  color: black;
}

.contact-hero-content {
  background-color: rgba(255, 255, 255, 0.85);
  display: inline-block;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.typing-heading {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: red;
  white-space: nowrap;
  overflow: hidden;
}

.cursor {
  display: inline-block;
  background-color: red;
  width: 3px;
  margin-left: 5px;
  animation: blink 0.8s infinite;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}



