body {
  font-family: "Inter", sans-serif;
  padding-top: 56px; /* Adjust for fixed navbar */
}

.hero {
  background: linear-gradient(135deg, #4a00e0, #8e2de2);
  color: white;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-weight: 700;
}

.icon-container {
  position: relative;
  width: 128px;
  height: 128px;
  margin: 0 auto;
}

.hero-icon {
  width: 100%;
  height: 100%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: #4a00e0;
  border-color: #4a00e0;
}

.btn-primary:hover {
  background-color: #3c00b3;
  border-color: #3c00b3;
}

/* Add more custom styles as needed */

