/* Custom Styles for Business Website Template */

/* Animation for the ping effect */
@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping {
  animation: ping 1.5s cubic-bezier(0,0,0.2,1) infinite;
}

/* Smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-padding {
    padding: 3rem 1rem;
  }
}

/* Hover effects for portfolio items */
.portfolio-item img {
  transition: transform 0.5s ease;
}

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

/* Form focus styles */
.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3); /* primary color with opacity */
}

/* Button hover effects */
.btn-primary {
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Navigation active state */
.nav-link.active {
  color: #10b981; /* primary color */
  border-bottom: 2px solid #10b981;
}