/* Custom styles - extend as needed */
* {
  transition: all 0.2s ease;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #334155;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  line-height: 1.625;
}

.hero-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.text-balance {
  text-wrap: balance;
}

.bg-hero-overlay {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.card-shadow {
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

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

.footer-gradient {
  background: linear-gradient(135deg, #1e2a44 0%, #1e2a43 44%, #6c4f71 100%);
}

.primary-gradient {
  background: linear-gradient(135deg, #1e2a44 0%, #1e2a43 44%, #6c4f71 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #1e2a44 0%, #1e2a43 44%, #6c4f71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #1e2a44;
  box-shadow: 0 0 0 2px rgba(30, 42, 68, 0.1);
}

a, button, .card-interactive {
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member-img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.hvr-border-fade:hover, .hvr-border-fade:focus, .hvr-border-fade:active {
  box-shadow: inset 0 0 0 1px #735778, 0 0 1px transparent !important;
  /* Hack to improve aliasing on mobile/tablet devices */
}
.hvr-bubble-right:before ,.hvr-bubble-left:before{
  border-color: transparent transparent transparent #fff;
}