body {
  font-family: 'Inter', system-ui, sans-serif;
}

/* Hero gradient background */
.hero {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, transparent 50%);
}

/* Feature icon styling */
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

/* Card hover effect */
.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Custom navbar brand gradient */
.navbar-brand .text-primary {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-body-superbright-footer {
    background-color: #242424;
    background-image: url("https://superbright.uk/res/footer.png");
    background-position: left center;
    background-size: cover;
}