/* Common */
/* Variables */
/* General Styles */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap");
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Animations */
.fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Components */
/* Components */
.hover-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
  border-color: #94a3b8;
}

/* Sections */
/* Header Section Styles */
/* Hero Section Styles */
/* Trust Strip Section Styles */
/* Difference Section Styles */
/* Services Section Styles */
/* Footer Section Styles *//*# sourceMappingURL=consultimate.css.map */