/* Custom styles for Avyukta home page */
@media (max-width: 768px) {
  .px-40 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Smooth hover effects for buttons */
button {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Animation for the hero section */
.hero-animation {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
