/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Font family */
body {
  font-family: 'Inter', sans-serif;
}

/* Optional: universal box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Optional glow for buttons on hover */
.glow-button:hover {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4), 0 0 40px rgba(99, 102, 241, 0.2);
}

/* Service card responsiveness (if needed for additional styling) */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Optional: section heading enhancements */
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
}

  .toast {
    margin-top: 16px;
    background-color: #10b981;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    animation: fadeInOut 3s ease-in-out forwards;
  }

  @keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(10px); }
    10%, 90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(10px); }
  }