/**
 * Above-the-fold critical CSS for base styles.css
 *
 * PURPOSE:
 * This file contains only the styles needed for the initial render (header, nav, hero).
 * It's loaded synchronously while the full style.css (~995KB) is loaded
 * asynchronously to eliminate render-blocking and improve page load performance.
 *
 * HOW IT WORKS:
 * 1. This critical CSS loads immediately (synchronous)
 * 2. The full CSS loads with media="print" (non-blocking)
 * 3. After page load, JavaScript switches the full CSS to media="all"
 *
 * MAINTENANCE:
 * If you add new above-the-fold elements that need styling, extract the relevant
 * styles from style.css and add them here.
 */

/* Font faces */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts//plus-jakarta-sans/PlusJakartaSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts//plus-jakarta-sans/PlusJakartaSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts//plus-jakarta-sans/PlusJakartaSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Icon font */
@font-face {
  font-family: "Nioicon";
  src: url("../fonts/Nioicon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* CSS Variables */
:root {
  --bs-blue: #0062ff;
  --bs-primary: #2b5cfd;
  --bs-dark: #0a1425;
  --bs-white: #fff;
  --bs-gray-50: #e5e7eb;
  --bs-gray-800: #64728f;
  --bs-gray-900: #495057;
  --bs-blue-1500: #2b5cfd;
  --bs-primary-rgb: 43, 92, 253;
  --bs-dark-rgb: 10, 20, 37;
  --bs-white-rgb: 255, 255, 255;
  --bs-body-font-family: "Plus Jakarta Sans", sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #495057;
  --bs-body-bg: #fff;
  --bs-link-color: #2b5cfd;
  --bs-link-hover-color: #224aca;
  --bs-border-color: #e5e7eb;
  --bs-border-radius: 0.5rem;
}

/* Base styles */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0a1425;
}

h1 {
  font-size: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  h1 { font-size: 3rem; }
}

h2 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h2 { font-size: 2.5rem; }
}

h3 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h3 { font-size: 2rem; }
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a {
  color: var(--bs-link-color);
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

strong {
  font-weight: bolder;
}

button {
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: none;
}

/* Container */
.container {
  --bs-gutter-x: 1.875rem;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1350px; } }

/* Grid */
.row {
  --bs-gutter-x: 1.875rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 576px) {
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
}
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
}
@media (min-width: 1200px) {
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
}

.gy-3 { --bs-gutter-y: 1rem; }

/* Flexbox utilities */
.d-flex { display: flex !important; }
.d-none { display: none !important; }
@media (min-width: 576px) { .d-sm-block { display: block !important; } }
@media (min-width: 768px) { .d-md-block { display: block !important; } }
@media (min-width: 1200px) { .d-xl-block { display: block !important; } }
.align-items-center { align-items: center !important; }
.align-items-end { align-items: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }

/* Spacing utilities */
.m-0 { margin: 0 !important; }
.mb-2 { margin-bottom: 0.75rem !important; }
.mb-5 { margin-bottom: 1.875rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mx-1 { margin-left: 0.375rem !important; margin-right: 0.375rem !important; }
.my-1 { margin-top: 0.375rem !important; margin-bottom: 0.375rem !important; }
@media (min-width: 768px) {
  .mb-md-1 { margin-bottom: 0.375rem !important; }
  .mt-md-8 { margin-top: 5rem !important; }
}
@media (min-width: 1200px) { .mt-xl-0 { margin-top: 0 !important; } }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 1.875rem !important; }
.pb-5 { padding-bottom: 1.875rem !important; }
.px-1 { padding-left: 0.375rem !important; padding-right: 0.375rem !important; }
.px-2 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
@media (min-width: 1200px) { .pt-xl-7 { padding-top: 3.75rem !important; } }

/* Typography utilities */
.text-white { color: #fff !important; }
.lead {
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
}
.fs-8 { font-size: 8px !important; }
.fs-14 { font-size: 14px !important; }

/* Background utilities */
.bg-dark {
  background-color: #0a1425 !important;
}
.text-bg-primary {
  color: #fff !important;
  background-color: #2b5cfd !important;
}
.bg-primary-100 {
  background-color: #eaefff !important;
}

/* Border utilities */
.rounded-1 { border-radius: 0.25rem !important; }
.rounded-pill { border-radius: 50rem !important; }
.overflow-hidden { overflow: hidden !important; }

/* Height */
.h-100 { height: 100% !important; }

/* Buttons */
.btn {
  --bs-btn-padding-x: 1.5rem;
  --bs-btn-padding-y: 0.688rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 600;
  --bs-btn-line-height: 1.75;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: 1.5rem;
  color: var(--bs-btn-color);
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.btn .icon {
  font-size: 1.125rem;
}
.btn span + .icon {
  margin-left: 0.625rem;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #2b5cfd;
  --bs-btn-border-color: #2b5cfd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #254ed7;
  --bs-btn-hover-border-color: #224aca;
  background-color: #2b5cfd !important;
}
.btn-primary:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg) !important;
  border-color: var(--bs-btn-hover-border-color);
}

.btn-white {
  --bs-btn-color: #0a1425;
  --bs-btn-bg: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #0a1425;
  --bs-btn-hover-bg: #e6e6e6;
  --bs-btn-hover-border-color: #dfdfdf;
}

/* Badge */
.badge {
  --bs-badge-padding-x: 0.75rem;
  --bs-badge-padding-y: 0.25rem;
  --bs-badge-font-size: 0.875rem;
  --bs-badge-font-weight: 600;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: 0.5rem;
  display: inline-block;
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  line-height: 1;
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
  background: none;
  letter-spacing: 0.04em;
}

/* Icons */
.ni {
  font-family: "Nioicon" !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ni-arrow-right:before { content: "\e943"; }
.ni-menu:before { content: "\eaec"; }
.ni-chevrons-up:before { content: "\e9de"; }
.icon { display: inline-flex; }

/* App root */
.nk-app-root, .nk-body {
  outline: 0;
}
@media (max-width: 360px) {
  .nk-body { min-width: 350px; }
}

/* Logo */
.logo-wrap {
  display: inline-flex;
  position: relative;
}
.logo-link {
  display: inline-flex;
}
.logo-img {
  height: 100%;
}
.logo-img:not(:first-child) {
  position: absolute;
  left: 0;
}
.logo-light {
  opacity: 0;
  visibility: hidden;
}
.is-theme .logo-light {
  opacity: 1;
  visibility: visible;
}
.is-theme .logo-dark {
  opacity: 0;
  visibility: hidden;
}

/* Header */
.nk-header {
  position: relative;
}
.nk-header-main {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0.8438rem 0px;
  transition: padding 0.2s linear;
  background-color: #fff;
  position: fixed;
}
.nk-header-main.has-separate {
  border-bottom: 1px solid #e5e7eb;
}
.nk-header-main.has-fixed {
  padding: 6px 0px;
  box-shadow: 4px 4px 36px 0px rgba(192, 192, 192, 0.16), -4px -4px 36px 0px rgba(192, 192, 192, 0.12) !important;
  background-color: #fff;
}
.nk-header-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nk-header-logo {
  display: inline-flex;
}
.nk-header-action {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

/* Navbar */
.nk-navbar {
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  height: 100%;
  display: flex;
  position: fixed;
  flex-direction: column;
  z-index: 1026;
  justify-content: space-between;
  background-color: #fff;
  transform: translateX(-100%);
  box-shadow: 0px 0px 10px rgba(10, 20, 37, 0.1);
}
.nk-navbar.navbar-active {
  transform: none;
}
.nk-navbar.navbar-mobile {
  transition: all 0.4s ease;
}

@media (min-width: 480px) {
  .nk-navbar { width: 330px; }
}
@media (min-width: 1200px) {
  .nk-navbar {
    width: auto;
    height: auto;
    transform: none;
    position: static;
    box-shadow: none;
    flex-direction: row;
    background-color: transparent;
  }
  .nk-navbar-toggle { display: none; }
  .is-theme-bg .nk-navbar { background-color: transparent; }
}

.navbar-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(73, 80, 87, 0.4);
  z-index: 1025;
  animation: overlay-fade-out 400ms ease 1;
}
.navbar-shown .navbar-overlay {
  animation: overlay-fade-in 400ms ease 1;
}

@keyframes overlay-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes overlay-fade-out {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* Navigation */
.nk-nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  max-height: 100%;
  overflow: auto;
}
.nk-nav-item {
  position: relative;
}
.nk-nav-link {
  display: flex;
  align-items: center;
  color: #0a1425;
  font-weight: 600;
  font-size: 1rem;
  background-color: transparent;
  padding: 0.625rem 1rem;
}

@media (min-width: 1200px) {
  .nk-nav {
    flex-direction: row;
    padding: 0;
    overflow: visible;
  }
  .nk-nav-item {
    display: flex;
    position: relative;
    align-items: center;
  }
  .nk-nav-item > .nk-nav-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* Theme variations */
.is-theme .nk-header-action a:not([class*=btn-outline-]) {
  color: #fff;
}
.is-theme .nk-nav-link {
  color: #fff;
  opacity: 0.9;
}
.is-theme .nk-nav-link:hover {
  opacity: 1;
  color: #fff;
}
.is-theme-bg .nk-navbar {
  background-color: #000;
}
@media (min-width: 1200px) {
  .is-theme-bg .nk-navbar {
    background-color: transparent;
  }
}

/* Nav buttons (Request A Demo, Open App) */
.nk-nav-btns {
  display: flex;
  margin: -0.5rem;
}
.nk-nav-btns > * {
  padding: 0.5rem;
}

/* Button group */
.nk-btn-group {
  display: flex;
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .nk-btn-group .btn {
    font-size: 14px !important;
    padding: 8px 16px;
  }
}

/* Banner */
.nk-banner {
  z-index: 1;
  position: relative;
}
.nk-banner-wrap {
  z-index: 5;
  padding: 60px 0px;
  padding-top: 120px;
  position: relative;
}
@media (min-width: 992px) {
  .nk-banner-wrap {
    padding: 120px 0px;
    padding-top: 160px;
  }
}
@media (min-width: 1200px) {
  .nk-banner-wrap {
    padding-top: 202px;
  }
}
.nk-banner-wrap-2 {
  padding-bottom: 120px;
}
@media (max-width: 767.98px) {
  .nk-banner-content p {
    font-size: 16px !important;
  }
}

/* Section */
.nk-section {
  z-index: 1;
  position: relative;
  padding: 30px 0;
}
@media (min-width: 992px) {
  .nk-section {
    padding: 60px 0;
  }
}
.nk-section-head {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .nk-section-head {
    padding-bottom: 60px;
  }
}

/* Mask/Shape backgrounds */
.nk-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.shape-19::after, .shape-20::after {
  content: "";
  z-index: -1;
  opacity: 0.6;
  user-select: none;
  position: absolute;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
}
.shape-19::after {
  background-image: url("../images/shape/v.png");
  background-position: center;
  width: 1085px;
  height: 100%;
  top: 0;
  left: 0;
}
.shape-20::after {
  background-image: url("../images/shape/w.png");
  background-position: center;
  width: 493px;
  height: 570px;
  top: 170px;
  right: 170px;
}

/* Brand logos */
.nk-brand {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .nk-brand img {
    width: auto;
    max-height: 24px;
  }
}

/* Scroll to top button */
.scroll-top {
  right: 12px;
  bottom: 70px;
  width: 60px;
  height: 60px;
  z-index: 9999;
  display: flex;
  font-size: 24px;
  position: fixed;
  overflow: hidden;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #2b5cfd;
  opacity: 0;
}
@media (min-width: 576px) {
  .scroll-top { bottom: 50px; }
}
@media (min-width: 768px) {
  .scroll-top { bottom: 60px; }
}
@media (min-width: 1200px) {
  .scroll-top { right: 24px; }
}

/* Animations */
.animate {
  animation-fill-mode: both;
  animation-duration: 1s;
}
.animate-infinite {
  animation-iteration-count: infinite;
}
.animate-duration-2 {
  animation-duration: 2s;
}
.animate-pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes pulse {
  from { transform: scale3d(1, 1, 1); }
  50% { transform: scale3d(1.05, 1.05, 1.05); }
  to { transform: scale3d(1, 1, 1); }
}

/* Responsive typography */
@media (max-width: 575.98px) {
  h1 { font-size: 1.625rem; }
  .lead, p { font-size: 1rem; }
}

/* ===========================================
   Additional styles for /contact-us, /blog, /case-studies
   =========================================== */

/* Additional grid columns */
@media (min-width: 768px) {
  .col-md-6 { flex: 0 0 auto; width: 50%; }
}
@media (min-width: 992px) {
  .col-lg-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
}
@media (min-width: 1200px) {
  .col-xl-4 { flex: 0 0 auto; width: 33.33333333%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.33333333%; }
  .col-xl-12 { flex: 0 0 auto; width: 100%; }
}

/* Gutter variant */
.g-4 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; }

/* Form styles */
.form-group { margin-bottom: 1rem; }
.form-label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  display: inline-block;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #2b5cfd;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(43, 92, 253, 0.25);
}
.form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}
.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 2.25rem 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  appearance: none;
}
textarea.form-control {
  min-height: 120px;
}

/* Card styles */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
}
.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}
.border-0 { border: 0 !important; }

/* Text utilities */
.text-center { text-align: center !important; }
.text-danger { color: #fa5b68 !important; }
.text-primary { color: #2b5cfd !important; }
.text-success { color: #22c55e !important; }
.text-light { color: #64728f !important; }

/* Additional spacing utilities */
.p-0 { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-7 { padding-bottom: 3.75rem !important; }
@media (min-width: 768px) {
  .pb-md-7 { padding-bottom: 3.75rem !important; }
  .mb-md-3 { margin-bottom: 1rem !important; }
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-xl-0 { }
@media (min-width: 1200px) {
  .mb-xl-0 { margin-bottom: 0 !important; }
}
.me-2 { margin-right: 0.75rem !important; }
.me-3 { margin-right: 1rem !important; }
.mx-6 { margin-left: 3.75rem !important; margin-right: 3.75rem !important; }

/* Font utilities */
.small { font-size: 0.875rem; }
.fw-normal { font-weight: 400 !important; }
.fw-semibold { font-weight: 600 !important; }

/* Border radius */
.rounded-2 { border-radius: 0.5rem !important; }
.rounded-3 { border-radius: 0.75rem !important; }

/* Height */
.h-100 { height: 100% !important; }

/* Section spacing */
.section-space {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .section-space {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.section-space-bottom {
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .section-space-bottom {
    padding-bottom: 120px;
  }
}

/* Block head styles */
.nk-block-head {
  padding-bottom: 1.5rem;
}
.nk-block-head-content {
  position: relative;
}
.nk-block-text {
  color: #64728f;
}

/* Overline title */
.hireline-overline-title {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2b5cfd;
}

/* Space utility */
.nk-space-y-s-160 {
  padding-top: 80px;
}
@media (min-width: 992px) {
  .nk-space-y-s-160 {
    padding-top: 160px;
  }
}

/* Shadow */
.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

/* Horizontal rule */
hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #eaefff;
  opacity: 1;
}

/* ===========================================
   Case Study & Blog Card Styles
   =========================================== */

/* Flex utilities */
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-grow-1 { flex-grow: 1 !important; }

/* Auto margins */
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }
.my-2 { margin-top: 0.75rem !important; margin-bottom: 0.75rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mt-2 { margin-top: 0.75rem !important; }
@media (min-width: 768px) {
  .mb-md-5 { margin-bottom: 1.875rem !important; }
}

/* Background */
.bg-white { background-color: #fff !important; }

/* Padding variants */
.py-5 { padding-top: 1.875rem !important; padding-bottom: 1.875rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-6 { padding: 3.75rem !important; }
.py-1 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }

/* Font utilities */
.font-monospace { font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }
.fw-bold { font-weight: 700 !important; }

/* Opacity */
.opacity-50 { opacity: 0.5 !important; }

/* Text utilities */
.text-dark { color: #0a1425 !important; }
.text-muted { color: #64728f !important; }
.text-start { text-align: left !important; }

/* Heading sizes */
.h3 {
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 700;
  line-height: 1.2;
  color: #0a1425;
}
@media (min-width: 1200px) {
  .h3 { font-size: 2rem; }
}
.h5 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
.h6 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

/* Card additional styles */
.card-header {
  padding: 1rem 1.5rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid #e5e7eb;
}
.card-title {
  margin-bottom: 0.5rem;
}
.card-content {
  display: flex;
  flex-direction: column;
}

/* Themed card (case studies) - white text on colored background */
.card.is-theme {
  color: #fff;
}
.card.is-theme .card-title,
.card.is-theme .card-title a,
.card.is-theme .h3,
.card.is-theme .h6 {
  color: #fff;
}
.card.is-theme a {
  color: #fff;
}

/* Outline white button for case study cards */
.btn-outline-white {
  --bs-btn-color: #fff;
  --bs-btn-border-color: #fff;
  --bs-btn-hover-color: #0a1425;
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #0a1425;
}

/* Gap utilities */
.gap-2 { gap: 0.75rem !important; }

/* Rounded 4 for cards */
.rounded-4 { border-radius: 1rem !important; }

/* Justify content end */
.justify-content-xl { justify-content: flex-start; }

/* Align self */
.align-self-center { align-self: center !important; }

/* Margin start (left in LTR) */
.ms-1 { margin-left: 0.375rem !important; }
