.hero-section {
  padding: 100px 0;
}
.typing-effect {
  font-weight: 600;
  font-size: 48px;
  white-space: nowrap;
  overflow: hidden;
  width: 26ch;
  animation: typing 3s steps(26) forwards, blink 0.75s step-end infinite;
}
.typing-gradient {
  background: linear-gradient(90deg, #00843E, #00b894, #00843E);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient-move 3s linear infinite;
}
@keyframes typing {
  from { width: 0 }
  to { width: 26ch }
}
@keyframes blink {
  0%, 100% { border-color: transparent }
  50% { border-color: #00843E }
}
@keyframes gradient-move {
  0% { background-position: 0% center }
  100% { background-position: 200% center }
}

.service-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  border: 1px solid #e5e5e5;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 132, 62, 0.1);
  border-color: #00843E;
}
.service-card .icon i {
  color: #00843E;
} 
.gradient-bg {
  background: linear-gradient(135deg, #00843E, #00b894, #008439);
  background-size: 200% 200%;
  animation: gradientMove 12s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (max-width: 767px) {
  .typing-effect {
      font-size: 32px !important;
      width: 24ch;
  }

  .fnt-s-s {
      font-size: 15px !important;
      line-height: 1.6;
  }

  .hero-text {
      padding: 0 10px;
  } 
}
