:root {
  --navbar-height: 64px;
  --fs-hero-heading: clamp(2.1875rem, 1.9643rem + 1.1161vw, 4.75rem);
  --fs-hero-text: clamp(1.05rem, 1.35vw, 1.4rem);
  --fs-section-title: clamp(1.7rem, 2.4vw, 3.4375rem);
  --fs-section-subtitle: clamp(1.0rem, 1.1vw, 1.5625rem);
  --fs-card-title: clamp(1.25rem, 1.6vw, 1.8rem);
  --fs-card-text: clamp(1.0rem, 1.35vw, 1.2rem);
  --fs-body: clamp(1rem, 0.6vw, 1.05rem);
  --fs-small: clamp(0.9rem, 0.45vw, 0.95rem);
  --fs-button: var(--fs-body);
  --fs-nav-brand: clamp(1.25rem, 0.9vw, 1.5rem);
  --fs-nav-link: clamp(0.95rem, 0.55vw, 1.0rem);
  --fs-footer: var(--fs-small);
  --fs-quote: var(--fs-section-title);
  --fs-quote-author: var(--fs-small);
  --fs-service-hero-title: var(--fs-hero-heading);
  --fs-service-hero-text: var(--fs-section-subtitle);
  --fs-service-card-title: clamp(1.25rem, 1.6vw, 1.5rem);
  --fs-service-card-text: clamp(0.8rem, 1.35vw, 1rem);
  --fs-service-cta-title: var(--fs-section-title);
  --fs-service-cta-text: var(--fs-body);
  --fs-h1: var(--fs-hero-heading);
  --fs-h2: var(--fs-section-title);
  --fs-h3: var(--fs-card-title);
  --fs-p: var(--fs-body);
}

@font-face {
  font-family: "LogoFont";
  src: url("/fonts/BalooPaaji2-ExtraBold.ttf") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
}


html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.08);
  height: 100%;
  background: #020617;
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  min-height: 100%;
  min-height: 100dvh;
  background: #020617;
  color: #ffffff;
  padding-top: calc(var(--navbar-height) + env(safe-area-inset-top));
  padding-bottom: env(safe-area-inset-bottom);
  min-height: 100vh;
  display: flex;
  flex-direction: column;


}

main{
  flex: 1;
  width: 100%;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  border: 2px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.42);
  background-clip: padding-box;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

textarea,
.contact-modal,
.service-page {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) rgba(255, 255, 255, 0.08);
}



.max-width-1920 {
  max-width: 1920px;
  margin: 0 auto;
}


.w-100 {
  width: 100% !important;
}


.gradient-text {
  background: linear-gradient(90deg,
      #4BE3ED,
      #4B73F4,
      #694BF4,
      #C137EB);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not (backdrop-filter: blur()) {

  .navbar-glass,
  .contact-modal {
    background: rgba(15, 23, 42, 0.9);
  }
}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .card-container,
  .feature-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
