:root {
  --primary: #D7E52C;
  --secondary: #7C9613;
  --black: #0e0e0e;
  --white: #ffffff;
  --gray: #747474;
}


/**
 * General
 */
body {
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
hr {
  border-color: rgba(0, 0, 0, 0.3);
}
::selection {
  background: var(--secondary, #7C9613);
  color: var(--white, #ffffff);
}
.btn {
  padding: 1rem 3rem;
  border: 1px solid;
  border-radius: 0;
  transition: all 0.2s ease-in-out !important;
  -webkit-transition: all 0.2s ease-in-out !important;
  -moz-transition: all 0.2s ease-in-out !important;
  -ms-transition: all 0.2s ease-in-out !important;
  -o-transition: all 0.2s ease-in-out !important;
  font-weight: 400;
}
.btn-primary {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background: #c0cc1c;
  color: var(--black);
  border-color: #c0cc1c;
}
.btn-black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-black:hover,
.btn-black:focus,
.btn-black:active {
  /* border: 1px solid rgba(0, 0, 0, 0.1); */
  /* background: transparent; */
  border-color: #272727;
  background: #272727;
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  border-color: rgba(0, 0, 0, 0.1);
  background: transparent;
  color: var(--black);
}
.btn-outline-white {
  background: transparent;
  border-color: #414141;
  color: var(--white);
  border-radius: 0;
}
.btn-outline-white:hover,
.btn-outline-white:focus,
.btn-outline-white:active {
  background: #414141;
  border-color: #414141;
  color: var(--white);
}
b, strong{
    font-weight: 600;
}
.btn-outline-black {
  background: transparent;
  border-color: #eee;
  color: var(--black);
}
.btn-outline-black:hover,
.btn-outline-black:focus,
.btn-outline-black:active {
  background: #eee;
  color: var(--black);
  border-color: #eee;
}
.btn-underline-primary {
  background: transparent;
  border: none;
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-decoration-color: var(--primary);
  text-underline-offset: 0.3rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease-in-out;
}
.btn-underline-primary:hover,
.btn-underline-primary:focus,
.btn-underline-primary:active {
  color: var(--primary);
}
.btn-underline-white {
  background: transparent;
  border: none;
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-decoration-color: var(--white);
  text-underline-offset: 0.3rem;
  padding: 1rem 2rem;
  transition: all 0.3s ease-in-out;
}
.btn-underline-white:hover,
.btn-underline-white:focus,
.btn-underline-white:active {
  color: var(--white);
  /* text-underline-offset: 0.5rem; */
}
#back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
}


/**
 * Navigation - Top bar
 */
.header-topbar {
  position: relative;
  width: 100%;
  padding: 0.5rem 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header-topbar .header-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-topbar .header-socials svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: var(--white);
  transition: fill 0.2s;
}
.header-topbar .header-socials a:hover svg {
  fill: var(--primary);
}
.header-topbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-topbar-links a {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.header-topbar-links a:hover,
.header-topbar-links a.active {
  color: var(--primary);
}

/**
 * Navigation - Main nav
 */
.navbar {
  position: relative;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
}
.navbar .nav-link--badge {
  position: relative;
}
.navbar .nav-badge {
  position: absolute !important;
  top: -4px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-size: 0.55rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  color: var(--black) !important;
  background: var(--primary) !important;
  padding: 0.1rem 0.4rem !important;
  border-radius: 2rem !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
  pointer-events: none !important;
  box-shadow: 0 0 6px rgba(215, 229, 44, 0.6), 0 0 14px rgba(215, 229, 44, 0.3) !important;
  animation: badge-glow 2s ease-in-out infinite !important;
  display: inline-block !important;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 6px rgba(215, 229, 44, 0.6), 0 0 14px rgba(215, 229, 44, 0.3); }
  50% { box-shadow: 0 0 10px rgba(215, 229, 44, 0.8), 0 0 22px rgba(215, 229, 44, 0.5); }
}
.navbar .container-fluid {
  justify-content: center;
}
.navbar .nav-item {
  margin-right: 1rem;
}
.navbar .nav-item:last-child {
  margin-right: 0;
}
.navbar .nav-link {
  color: var(--black);
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: all 0.2s ease-in-out;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link:active {
  color: var(--secondary);
}
.navbar-nav {
  align-items: center;
}
.navbar-nav-left {
  margin-right: auto;
}
.navbar-nav-right {
  margin-left: auto;
}
.navbar-brand {
  margin: 0 2rem;
  flex-shrink: 0;
  order: 0;
}
/* Desktop: logo between nav-left and nav-right */
.navbar .container {
  display: flex;
  align-items: center;
}
.navbar-collapse {
  display: flex;
  align-items: center;
  flex: 1;
}
/* Hide mobile-only elements on desktop */
.mobile-nav-footer {
  display: none;
}
.mega-dropdown-back {
  display: none;
}
.navbar-brand svg {
  width: 10rem;
  height: 100%;
  fill: var(--black);
}
.navbar-brand-desktop svg {
  width: 10rem;
  height: auto;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--secondary);
}
/* CTA button with glow */
.navbar .nav-link-cta {
  background: var(--primary) !important;
  color: var(--black) !important;
  border: 1px solid var(--primary) !important;
  padding: 0.5rem 1.5rem !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(215, 229, 44, 0.4), 0 0 20px rgba(215, 229, 44, 0.2);
  transition: all 0.3s ease-in-out;
}
.navbar .nav-link-cta:hover {
  background: var(--primary) !important;
  color: var(--black) !important;
  box-shadow: 0 0 16px rgba(215, 229, 44, 0.6), 0 0 32px rgba(215, 229, 44, 0.35);
  transform: translateY(-1px);
}
.dropdown:hover > .dropdown-menu {
  opacity: 1;
  top: 130%;
  visibility: visible;
}
.dropdown .dropdown-menu {
  background: #272727 none repeat scroll 0 0;
  /* background: #fff none repeat scroll 0 0; */
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 8%);
  -webkit-box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 8%);
  left: 0;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  border: 0;
  border-radius: 0.25rem;
  text-align: left;
  display: block;
  padding: 0;
  width: auto;
  top: 130%;
  min-width: 3rem;
}
.dropdown-item {
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
  font-weight: 400;
  border-radius: 0.5rem;
  color: var(--white);
}
.dropdown-item:focus, .dropdown-item:hover {
  border-radius: 0.5rem;
  background: #f4f4f4;
}
.dropdown-toggle::after {
  display: inline-block;
  font-size: 0.65em;
  margin-left: 0.3em;
  vertical-align: middle;
}
.navbar .nav-link svg {
  width: 1rem;
  height: 1rem;
}
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0;
}
.navbar-toggler svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--white);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-dark {
  transition: height .4s , padding .4s , background .4s;
}
.navbar-dark .nav-link {
  color: var(--white);
}
.navbar-dark .navbar-brand svg {
  fill: var(--white);
}
.navbar-dark .btn {
  border-color: #414141 !important;
  background: var(--white);
  color: var(--white) !important;
}
.navbar-dark .btn:hover,
.navbar-dark .btn:focus,
.navbar-dark .btn:active {
  background: #414141 !important;
  color: var(--white) !important;
  border-color: #414141 !important;
}
.dropdown-item:focus, .dropdown-item:hover {
  background: none;
}

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  top: 130%;
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 1.25rem;
  min-width: 340px;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  z-index: 9;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}
.dropdown:hover > .mega-dropdown {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.mega-dropdown-heading {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 0.75rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.5rem;
}
.mega-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--white);
}
.mega-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.mega-dropdown-item:hover .mega-dropdown-arrow {
  opacity: 1;
  transform: translateX(0);
}
.mega-dropdown-item:hover .mega-dropdown-title {
  color: var(--primary);
}
.mega-dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.mega-dropdown-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: var(--primary);
  fill: none;
}
.mega-dropdown-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.mega-dropdown-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.2s;
}
.mega-dropdown-desc {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
  margin-top: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 220px;
}
.mega-dropdown-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
  stroke: var(--primary);
}
.mega-dropdown-item--cta {
  margin-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.85rem;
  border-radius: 0 0 0.5rem 0.5rem;
}
.mega-dropdown-item--cta .mega-dropdown-icon {
  background: rgba(215, 229, 44, 0.1);
  border-color: rgba(215, 229, 44, 0.2);
}
.mega-dropdown-item--cta .mega-dropdown-title {
  color: var(--primary);
}

/* Wide mega dropdown with sidebar */
.mega-dropdown--wide {
  min-width: 640px;
}
.mega-dropdown-row {
  display: flex;
  gap: 0;
}
.mega-dropdown--wide .mega-dropdown-col {
  flex: 1;
  padding-right: 1.25rem;
}
.mega-dropdown-sidebar {
  flex: 0 0 240px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 1.25rem;
}
.mega-dropdown-usecases {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.mega-dropdown-usecases li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}
.usecase-dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 6px rgba(215, 229, 44, 0.5);
  margin-top: 0.3rem;
}

.navbar-dark .nav-link.active, .navbar-dark .nav-link.show,
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus,
.navbar-dark .nav-link:active {
  color: var(--primary);
}
.nav-item.dropdown:hover .nav-link,
.nav-item.dropdown:focus .nav-link,
.nav-item.dropdown:active .nav-link {
  color: var(--secondary);
}
.navbar-dark .nav-item.dropdown:hover .nav-link,
.navbar-dark .nav-item.dropdown:focus .nav-link,
.navbar-dark .nav-item.dropdown:active .nav-link {
  color: var(--primary);
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
  color: var(--primary);
}
.dropdown .dropdown-menu {
  border-radius: 0.25rem;
}
.header-fixed .nav-link {
  color: var(--white);
}
.header-fixed .nav-link.btn {
  color: var(--white);
  border-color: #414141;
  background: transparent;
}
.header-fixed .nav-link.btn:hover,
.header-fixed .nav-link.btn:focus,
.header-fixed .nav-link.btn:active {
  background: #414141;
  color: var(--white);
  border: 1px solid #414141;
}
.header-fixed .nav-link:hover,
.header-fixed .nav-link:focus,
.header-fixed .nav-link:active {
  color: var(--primary);
}
.header-fixed .nav-link.active {
  color: var(--primary);
}
.header-fixed .dropdown-item:focus,
.header-fixed .dropdown-item:hover,
.header-fixed .dropdown-item:active {
  color: var(--primary);
}
.header-fixed .nav-item.dropdown:hover .nav-link,
.header-fixed .nav-item.dropdown:focus .nav-link,
.header-fixed .nav-item.dropdown:active .nav-link {
  color: var(--primary);
}
.header-fixed {
  background: var(--black);
}
.header-fixed .navbar-brand svg {
  fill: var(--white);
}
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  transition: transform .4s ease, background .4s ease;
}
.page-project .header {
  background: var(--black);
}
.header-top {
  padding: 1rem 0 1.5rem;
  position: relative;
  z-index: 99;
}
.header-top ul.left-side {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-top ul.left-side li {
  margin-right: 1rem;
}
.header-top ul.left-side li:last-child {
  margin-right: 0;
}
.header-top ul.left-side li a {
  color: var(--white);
  font-size: 0.875rem;
  text-decoration: none;
}
.header-top ul.left-side li a:hover,
.header-top ul.left-side li a:focus,
.header-top ul.left-side li a:active {
  color: var(--primary);
}
.header-top ul.right-side {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-top ul.right-side li {
  margin-right: 1rem;
}
.header-top ul.right-side li:last-child {
  margin-right: 0;
}
.header-top ul.right-side li svg {
  width: 1rem;
  height: 1rem;
  fill: var(--white);
}




/**
 * AI HP Banner
 */
.ai-hp-banner {
  background: var(--black);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ai-hp-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 10% 50%, rgba(215,229,44,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ai-hp-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(215,229,44,0.07);
  border: 1px solid rgba(215,229,44,0.18);
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}
.ai-hp-banner-pre {
  font-size: 1.5rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 0.75rem;
}
.ai-hp-banner-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.ai-hp-banner-title span {
  color: var(--primary);
  font-style: italic;
}
.ai-hp-banner-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.ai-hp-banner-desc strong {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.ai-hp-banner-stats {
  display: flex;
  gap: 0;
}
.ai-hp-banner-stat {
  display: flex;
  flex-direction: column;
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ai-hp-banner-stat:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.ai-hp-banner-stat strong {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.ai-hp-banner-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ai-hp-banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding-left: 3rem;
  border-left: 1px solid rgba(255,255,255,0.08);
  height: 100%;
  justify-content: center;
}
.ai-hp-banner-btn-primary {
  background: var(--primary);
  color: var(--black) !important;
  border-color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.85rem 1.75rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.ai-hp-banner-btn-primary:hover {
  background: transparent;
  color: var(--primary) !important;
}
.ai-hp-banner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}
.ai-hp-banner-link:hover {
  color: var(--primary);
}

/**
 * AI Hero
 */
.ai-hero {
  background: var(--black);
  padding: 12rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.ai-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(215, 229, 44, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.ai-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(215, 229, 44, 0.08);
  border: 1px solid rgba(215, 229, 44, 0.2);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1.25rem;
  border-radius: 3rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(215, 229, 44, 0.1);
}
.ai-hero-title {
  font-size: 3.25rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.ai-hero-title span {
  color: var(--primary);
  font-style: italic;
}
.ai-hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.ai-hero-desc strong {
  color: var(--white);
  font-weight: 500;
}
.ai-hero-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.ai-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: none;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 400;
}
.ai-hero-tag svg {
  stroke: var(--primary);
  flex-shrink: 0;
}
.ai-hero-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ai-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary) !important;
  color: var(--black) !important;
  border: 1px solid var(--primary) !important;
  border-radius: 0 !important;
  font-weight: 600;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(215, 229, 44, 0.2);
}
.ai-btn-primary:hover {
  box-shadow: 0 0 30px rgba(215, 229, 44, 0.35);
  transform: translateY(-2px);
}
.ai-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 0 !important;
  font-weight: 400;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.ai-btn-outline:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

/**
 * AI Trust bar
 */
.ai-trust {
  background: var(--white);
  padding: 5rem 0;
}
.ai-trust-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.ai-trust-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.ai-trust-title strong {
  font-weight: 600;
}
.ai-trust-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  background: var(--black);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--black);
  transition: all 0.3s ease;
}
.ai-trust-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--black);
}
.ai-trust-link svg {
  transition: transform 0.3s ease;
}
.ai-trust-link:hover svg {
  transform: translateX(3px);
}
.ai-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}
.ai-trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0.5rem 1rem;
}
.ai-trust-logo img {
  max-height: 2rem;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.ai-trust-logo img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}
@media (max-width: 768px) {
  .ai-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .ai-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/**
 * AI Why section
 */
.ai-why {
  background: var(--black);
  padding: 5rem 0;
}
.ai-why-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.ai-why-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.ai-why-title em {
  color: var(--primary);
  font-style: italic;
}
.ai-why-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.ai-why-card {
  background: #161616;
  border: none;
  border-radius: 0;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}
.ai-why-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
}
.ai-why-icon {
  display: none;
}
.ai-stat-line {
  text-align: center;
  padding: 0 1rem;
}
.ai-stat-dot {
  width: 3rem;
  height: 2px;
  min-width: 3rem;
  border-radius: 0;
  background: var(--primary);
  box-shadow: none;
  margin: 0 auto 1rem;
  display: block;
}
.ai-stat-line p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}
.ai-why-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(215, 229, 44, 0.15);
  margin-bottom: 1rem;
  line-height: 1;
}
.ai-why-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.ai-why-card-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin: 0;
}
.ai-why-card-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ai-why-card-list li {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 1rem;
  position: relative;
}
.ai-why-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 5px;
  height: 5px;
  background: var(--primary);
  border-radius: 0;
}
.ai-why-hidden {
  display: none;
}
.ai-why-hidden.ai-why-visible {
  display: block;
}
.ai-why-toggle {
  border-radius: 0 !important;
}
.ai-why-card-result {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/**
 * AI Process
 */
.ai-process {
  background: var(--white);
  padding: 5rem 0;
}
.ai-process-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.ai-process-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}
.ai-process-title em {
  background: var(--black);
  color: var(--primary);
  font-style: normal;
  font-weight: 600;
  padding: 0.15em 0.5em;
  display: inline-block;
  margin-top: 0.15em;
}
.ai-process-step {
  padding: 2rem;
  background: #f7f7f7;
  height: 100%;
  position: relative;
}
.ai-process-num {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.ai-process-step-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.ai-process-step-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: #777;
  line-height: 1.6;
  margin: 0;
}
.ai-process-step-desc strong {
  color: var(--black);
  font-weight: 500;
}

/**
 * AI Checklist
 */
.ai-checklist {
  background: var(--black);
  padding: 5rem 0;
}
.ai-checklist-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 1rem;
}
.ai-checklist-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.ai-checklist-title em {
  color: var(--primary);
  font-style: italic;
}
.ai-checklist-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.ai-checklist-subtitle strong {
  color: var(--primary);
  font-weight: 500;
}
.ai-checklist-card {
  background: #161616;
  border: none;
  border-radius: 0;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.ai-checklist-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ai-checklist-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.ai-checklist-list li strong {
  color: var(--white);
  font-weight: 500;
}
.ai-checklist-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ai-checklist-list li:first-child {
  padding-top: 0;
}
.ai-check-icon {
  width: 1.75rem;
  height: 1.75rem;
  min-width: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  color: var(--black);
  box-shadow: 0 0 10px rgba(215, 229, 44, 0.25);
  animation: check-pulse 2.5s ease-in-out infinite;
}
.ai-checklist-list li:nth-child(2) .ai-check-icon { animation-delay: 0.3s; }
.ai-checklist-list li:nth-child(3) .ai-check-icon { animation-delay: 0.6s; }
.ai-checklist-list li:nth-child(4) .ai-check-icon { animation-delay: 0.9s; }
.ai-checklist-list li:nth-child(5) .ai-check-icon { animation-delay: 1.2s; }
@keyframes check-pulse {
  0%, 100% { box-shadow: 0 0 8px rgba(215, 229, 44, 0.2); }
  50% { box-shadow: 0 0 18px rgba(215, 229, 44, 0.45); }
}

/**
 * AI Use cases
 */
.ai-cases {
  background: var(--black);
  padding: 5rem 0;
}
.ai-cases-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.ai-cases-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.ai-cases-title em {
  color: var(--primary);
  font-style: italic;
}
.ai-cases-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  max-width: 550px;
  margin: 0 auto;
}
.ai-case-card {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  border: none;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ai-case-card:hover {
  background: #1a1a1a;
  transform: translateY(-4px);
}
.ai-case-badge {
  display: inline-block;
  background: rgba(215, 229, 44, 0.15);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.ai-case-client {
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.75rem;
}
.ai-case-result {
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.ai-case-stats {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.ai-case-stat {
  flex: 1;
  padding: 0.75rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  text-align: center;
}
.ai-case-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.ai-case-stat span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ai-case-quote {
  font-size: 0.8rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--primary);
  margin-top: auto;
}

/**
 * AI Cards
 */
.ai-cards-section {
  padding: 5rem 0;
  background: var(--black);
}
.ai-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ai-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.ai-card:hover {
  border-color: rgba(215, 229, 44, 0.15);
  background: #1a1a1a;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(215, 229, 44, 0.05);
}
.ai-card:hover::before {
  transform: scaleX(1);
}
.ai-card-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(215, 229, 44, 0.08);
  border: 1px solid rgba(215, 229, 44, 0.15);
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}
.ai-card:hover .ai-card-icon {
  background: rgba(215, 229, 44, 0.12);
  box-shadow: 0 0 16px rgba(215, 229, 44, 0.15);
}
.ai-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.ai-card-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.5rem;
}
.ai-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}
.ai-card:hover .ai-card-link {
  gap: 0.75rem;
}
.ai-card-link svg {
  transition: transform 0.3s ease;
}
.ai-card:hover .ai-card-link svg {
  transform: translateX(2px);
}

/**
 * AI Calculator
 */
.ai-calc {
  background: var(--black);
  padding: 12rem 0 5rem;
}
.ai-calc-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.ai-calc-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.ai-calc-title em {
  color: var(--primary);
  font-style: italic;
}
.ai-calc-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
}
.ai-calc-card {
  background: #131313;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.ai-calc-input {
  background: #1a1a1a;
  padding: 1.75rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ai-calc-input::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.ai-calc-input:hover::before {
  opacity: 1;
}
.ai-calc-input-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.25rem;
}
.ai-calc-input-header label {
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ai-calc-value {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.ai-calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 0;
  background: #2a2a2a;
  outline: none;
  cursor: pointer;
}
.ai-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(215, 229, 44, 0.35);
  transition: box-shadow 0.2s;
}
.ai-calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(215, 229, 44, 0.5);
}
.ai-calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 12px rgba(215, 229, 44, 0.35);
}
.ai-calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ai-calc-result {
  background: #131313;
  border: 1px solid rgba(215, 229, 44, 0.12);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.ai-calc-result::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  box-shadow: 0 0 20px rgba(215, 229, 44, 0.3);
}
.ai-calc-result-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 0.35rem;
}
.ai-calc-result-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  text-shadow: 0 0 30px rgba(215, 229, 44, 0.15);
}
.ai-calc-result-hours {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
}
.ai-calc-result-monthly {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
}
.ai-calc-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.25);
}

/**
 * AI Manifesto
 */
.ai-manifesto {
  background: var(--black);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.ai-manifesto-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2rem;
}
.ai-manifesto-title em {
  color: var(--primary);
  font-style: italic;
  text-decoration: line-through;
  text-decoration-color: rgba(215, 229, 44, 0.4);
}
.ai-manifesto-text {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.ai-manifesto-text strong {
  color: var(--white);
  font-weight: 500;
}
.ai-manifesto-highlight {
  margin-top: 2.5rem;
  padding: 2rem;
  background: #161616;
  border-left: 3px solid var(--primary);
}
.ai-manifesto-highlight p {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}
.ai-manifesto-highlight span {
  color: var(--primary);
  font-weight: 600;
}

/**
 * AI Professions
 */
.ai-professions {
  background: var(--black);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.ai-prof-card {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.ai-prof-card:hover {
  border-color: rgba(215, 229, 44, 0.12);
  transform: translateY(-4px);
}
.ai-prof-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.ai-prof-header svg {
  flex-shrink: 0;
}
.ai-prof-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
}
.ai-prof-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.ai-prof-stats {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.ai-prof-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.ai-prof-stat-label {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.25);
}
.ai-prof-stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}
.ai-prof-flow {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  margin: auto 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/**
 * Breadcrumb
 */
.breadcrumb-wrapper {
  padding: 4rem 0 2rem;
}
.breadcrumb-wrapper>.container {
  position: relative;
  z-index: 1;
}
.breadcrumb-wrapper .section-title {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.breadcrumb-wrapper-dark {
  background: var(--black);
  /* background: linear-gradient(rgba(23,23,23,0.8), rgba(23,23,23,0.8)), url('https://images.unsplash.com/photo-1511376777868-611b54f68947?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3540&q=80') no-repeat center center; */
  background-size: cover;
  color: var(--white);
  padding: 10rem 0 1.5rem
}
.breadcrumb-wrapper .breadcrumb {
  padding: 0;
  margin-bottom: 0;
}
.breadcrumb-wrapper .breadcrumb a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.breadcrumb-wrapper .breadcrumb a:hover,
.breadcrumb-wrapper .breadcrumb a:focus,
.breadcrumb-wrapper .breadcrumb a:active {
  color: var(--secondary);
}
.breadcrumb-wrapper-dark .breadcrumb a {
  color: var(--white);
}
.breadcrumb-wrapper-dark .breadcrumb li {
  color: var(--white);
}
.breadcrumb-wrapper-dark .breadcrumb-item+.breadcrumb-item::before {
  color: #747474;
}
.breadcrumb-wrapper-dark p {
  max-width: 60%;
  color: #f4f4f4;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5rem;
}
.breadcrumb-wrapper-dark p:last-child {
  margin-bottom: 0;
}
.breadcrumb-wrapper .section-subtitle {
  color: var(--white);
}



/**
 * Section Hero
 */
.hero {
  background: #000000;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/hero-bg.jpg) no-repeat;
  background-size: cover;
  background-position: 100px -210px;
  opacity: 0.3;
}
.hero .hero-content {
  padding: 16rem 0 12rem;
  position: relative;
}
.hero .hero-img {
  position: absolute;
  right: 0;
  width: 32rem;
}
.hero .hero-subtitle {
  color: var(--primary);
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.hero .hero-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 4.25rem;
}
.hero .hero-title span {
  color: var(--primary);
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
.hero p {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 80%;
  line-height: 1.8rem;
}
.hero .hero-clients {
  margin-bottom: 2.5rem;
}
.hero .hero-clients ul li:last-child {
  margin-right: 0;
}
.hero .hero-clients ul li img {
  opacity: 1;
  max-width: 7rem;
  transition: all 0.2s ease-in-out;
}
.hero .hero-clients ul li img:hover,
.hero .hero-clients ul li img:focus,
.hero .hero-clients ul li img:active {
  cursor: auto;
}
.hero .hero-clients .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-clients ul li img{
    filter: brightness(0) invert(1);
}



/**
 * Section title
 */
.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 3rem;
  margin-top: 0.5rem;
}
.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5rem;
  text-transform: inherit;
  /* color: var(--white); */
  color: var(--gray);
}


/**
 * Section services
 */
.services {
  padding: 6rem 0 0; 
}
.services .service-card {
  position: relative;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  padding-bottom: 6rem;
  margin-right: 2.5rem;
  height: 100%;
}
.services .service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}
.services .service-card .service-title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.services .service-card .service-title svg {
  width: 3rem;
  height: 3rem;
  stroke: var(--black);
  stroke-width: 2;
  margin-right: 0.5rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.services .service-card .service-title a {
  color: var(--black);
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.services .service-card .service-title a:hover,
.services .service-card .service-title a:focus,
.services .service-card .service-title a:active {
  color: var(--secondary);
}
.services .service-card .service-title a:hover svg,
.services .service-card .service-title a:focus svg,
.services .service-card .service-title a:active svg {
  stroke: var(--secondary);
}
.services .service-card p {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.5rem;
  max-width: 100%;
  color: #414141;
  text-wrap: wrap;
  text-align: justify;
}
.services .service-card .service-categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.services .service-card .service-categories li {
  margin-right: 0.5rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.services .service-card .service-categories li:last-child {
  margin-right: 0;
}
.services .service-card .service-categories li a {
  color: var(--black);
  background: var(--white);
  font-size: 0.875rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0rem 0.75rem rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.services .service-card .service-categories li a:hover,
.services .service-card .service-categories li a:focus,
.services .service-card .service-categories li a:active {
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}


/**
 * Section featured projects
 */
.featured-projects {
  padding: 4rem 0;
}
.page-home .featured-projects {
  padding: 4rem 0 2rem;
}
.featured-projects-wrapper>div:nth-child(odd) {
  transform: translate(0px, -80px);
}
.featured-projects-wrapper {
  margin-top: 4rem;
}
.featured-projects a {
  text-decoration: none;
  color: var(--black);
}
.featured-projects .f-project-card {
  position: relative;
  margin-bottom: 1.5rem;
}
.featured-projects .f-project-card:hover .f-project-img img,
.featured-projects .f-project-card:hover .f-project-img img,
.featured-projects .f-project-card:hover .f-project-img img {
  transform: rotate(2deg) scale(1.08);
}
.featured-projects .f-project-card .f-project-content {
  padding: 0 1.5rem;
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  left: 1rem;
  color: var(--white);
}
.featured-projects .f-project-card .f-project-img {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 0.5rem;
  max-height: 26rem;
}
.featured-projects .f-project-card .f-project-img img {
  border-radius: 0.5rem;
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.featured-projects .f-project-card .f-project-img img:hover,
.featured-projects .f-project-card .f-project-img img:focus,
.featured-projects .f-project-card .f-project-img img:active {
  transform: rotate(2deg) scale(1.05);
}
.featured-projects .f-project-card .f-project-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.featured-projects .f-project-card p {
  font-size: 0.875rem;
  font-weight: 300;
  margin-bottom: .5rem;
  line-height: 1.5rem;
  max-width: 95%;
}
.featured-projects .f-project-card .f-project-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.featured-projects .f-project-card .f-project-categories li {
  margin-right: 0.5rem;
}
.featured-projects .f-project-card .f-project-categories li:last-child {
  margin-right: 0;
}
.featured-projects .f-project-card .f-project-categories li h4 {
  /* color: var(--black);
  background: var(--white); */
  color: var(--white);
  background: rgba(5, 5, 5, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  -ms-backdrop-filter: blur(10px);
  font-size: 0.875rem;
  font-weight: 300;
  text-decoration: none;
  box-shadow: 0 0rem 0.75rem rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.featured-projects .f-project-card .f-project-categories li h4 {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}
.featured-projects .f-project-card .f-project-categories li h4:hover,
.featured-projects .f-project-card .f-project-categories li h4:focus,
.featured-projects .f-project-card .f-project-categories li h4:active {
  background: var(--black);
  color: var(--white);
}
.featured-projects .f-project-img::before {
  content: '';
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
}
.featured-projects-wrapper .col-md-12 .f-project-card {
  margin-bottom: 2rem;
}
.featured-projects-wrapper .col-md-12 .f-project-card .f-project-img {
  height: 40rem;
  max-height: 40rem;
}
.featured-projects-wrapper .col-md-12 .f-project-card .f-project-content {
  bottom: 4rem;
  left: 3rem;
}
.featured-projects-wrapper .col-md-12 .f-project-card .f-project-title {
    font-size: 3rem;
    line-height: 4rem;
}
.featured-projects .f-project-card .f-project-title {
  color: var(--white);
}
.featured-projects-wrapper .col-md-12 .f-project-card p {
  max-width: 60%;
  font-size: 1.125rem;
  line-height: 2rem;
}
.featured-projects-wrapper .col-md-12 .f-project-card .f-project-categories li h4 {
    font-size: 1rem;
}



/**
 * Section testimonials
 */
.testimonials {
  padding: 6rem 0;
  position: relative;
  background: var(--black);
}
.testimonials .ai-why-title {
  color: var(--white);
}
.testimonials .splide:before {
  content: "„";
  font-size: 30rem;
  color: rgb(0 0 0 / 5%);
  position: absolute;
  left: -4rem;
  top: -33rem;
  opacity: 1;
  z-index: -1;
  font-family: Georgia, serif;
}
.testimonials .testimonial-item p {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 2.6rem;
  color: var(--white);
}
.testimonials .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonials .testimonial-item .testimonial-author .testimonial-author-img img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 1rem;
}
.testimonials .testimonial-item .testimonial-author .testimonial-author-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.testimonials .testimonial-item .testimonial-author .testimonial-author-info h5 {
  margin-bottom: 0;
  margin-right: 0.25rem;
  font-size: 1rem;
  color: var(--white);
}
.testimonials .testimonial-item .testimonial-author .testimonial-author-info span {
  font-weight: 400;
  color: var(--gray);
}
#testimonials-slider .splide__arrows.splide__arrows--ltr {
  position: absolute;
  right: 3rem;
  bottom: 1.25rem;
}
#testimonials-slider .splide__arrow--next {
  right: -3rem;
}
#testimonials-slider .splide__arrow--prev {
  left: -2.5rem;
}
#testimonials-slider .splide__arrow {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 2.5rem;
  width: 2.5rem;
  transition: all 0.2s ease-in-out;
}
#testimonials-slider .splide__arrow:hover,
#testimonials-slider .splide__arrow:focus,
#testimonials-slider .splide__arrow:active {
  /* background: rgba(0, 0, 0, 0.025); */
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#testimonials-slider .splide__arrow svg {
  stroke: rgba(0, 0, 0, 0.6);
}


/**
 * Section about us
 */
.about-us {
  padding: 6rem 0;
  background: var(--black);
  color: var(--white);
}
.about-us .section-subtitle {
  color: #999;
}
.about-us .section-title {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.about-us p {
  color: #f4f4f4;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.5rem;
  width: 90%;
}
.about-us .about-img img {
  border-radius: 0.5rem;
  width: 100%;
}
.about-us .metrics-item {
  display: flex;
  align-items: center;
  margin-right: 2rem;
}
.about-us .metrics-item:last-child {
  margin-right: 0;
}
.about-us .metrics-item h6 {
  font-size: 2.5rem;
  margin-right: 1rem;
  margin-bottom: 0;
  /* color: var(--primary); */
}
.about-us .metrics-item span {
  text-transform: uppercase;
  max-width: 11rem;
  font-size: 0.875rem;
}
.about-us .metrics {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.about-us .about-img {
  position: relative;
  overflow: hidden;
}
.about-us .about-img-overlay h6 {
  font-size: 2.5rem;
  margin-right: 1rem;
}
.about-us .about-img-overlay span {
  text-transform: uppercase;
  max-width: 15rem;
}
.about-us .about-img-overlay::before {
  content: "";
  position: absolute;
  background: var(--primary);
  width: 18rem;
  height: 14em;
  right: -1.5rem;
  bottom: -3rem;
  z-index: 0;
  border-top-left-radius: 0.5rem;
  transform: rotate(14deg);
}
.about-us .about-img-overlay-content {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--black);
  padding: 2.5rem 3rem;
  border-top-left-radius: 0.5rem;
}


/**
 * Section blog
 */
.blog {
  padding: 6rem 0 2rem;
  position: relative;
}
.page-home .blog {
  padding-bottom: 44rem;
  overflow: hidden;
}
.page-home .blog .section-title {
  margin-bottom: 0;
}
.post-card a {
  text-decoration: none;
  color: var(--black);
}
.post-card .post-card-img {
  width: 100%;
  height: 16rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.1);
}
.post-card .post-card-img img:hover,
.post-card .post-card-img img:focus,
.post-card .post-card-img img:active {
  transform: rotate(2deg) scale(1.05);
}
.post-card .post-card-img img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.post-card .post-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 58px;
  transition: all 0.2s ease-in-out;
}
.post-card .post-card-title:hover,
.post-card .post-card-title:focus,
.post-card .post-card-title:active {
  color: var(--secondary);
}
.post-card p {
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
}
.post-card .post-card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.post-card .post-card-meta a {
  transition: all 0.2s ease-in-out;
}
.post-card .post-card-meta a:hover,
.post-card .post-card-meta a:focus,
.post-card .post-card-meta a:active {
  color: var(--secondary);
}
.post-card .post-card-meta span::after {
  content: "•";
  margin: 0 0.5rem;
}
.post-card .post-card-meta span:last-child::after {
  content: "";
}
.post-card .read-more {
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.post-card .read-more:hover,
.post-card .read-more:focus,
.post-card .read-more:active {
  text-decoration-color: var(--secondary);
  color: var(--secondary);
}
.post-card {
  margin-bottom: 6rem;
}
#blog-slider {
  position: absolute;
} 
#blog-slider .splide__slide {
  padding: 3rem 0 0;
}
#blog-slider .splide__arrows.splide__arrows--ltr {
  position: absolute;
  right: 80.5rem;
  top: -4.5rem;
  top: -1.5rem;
  z-index: 99;
}
#blog-slider .splide__arrow--next {
  right: -3rem;
}
#blog-slider .splide__arrow--prev {
  left: -2.5rem;
}
#blog-slider .splide__arrow {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 2.5rem;
  width: 2.5rem;
  transition: all 0.2s ease-in-out;
}
#blog-slider .splide__arrow:hover,
#blog-slider .splide__arrow:focus,
#blog-slider .splide__arrow:active {
  /* background: rgba(0, 0, 0, 0.025); */
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#blog-slider .splide__arrow svg {
  stroke: rgba(0, 0, 0, 0.6);
}
/* #blog-slider .splide__slide {
  max-width: 24rem;
} */


/**
 * Section contact
 */
.contact {
  padding: 6rem 0 6rem;
  overflow: hidden;
}
.contact-light {
  background: #f7f8f2;
}
.contact-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.contact-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 1rem;
}
.contact-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-bottom: 0.1rem;
}
.contact-info-item span,
.contact-info-item a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
}
.contact-info-item a:hover {
  color: var(--secondary);
}
.contact-form-card {
  background: #fff;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.07);
}
.contact-form-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1rem 0;
}
.contact-consent-check {
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--primary);
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}
.contact-consent label {
  font-size: 0.82rem;
  color: var(--gray);
  cursor: pointer;
  line-height: 1.5;
}
.contact-consent label a {
  color: var(--black);
  text-decoration: underline;
}
.contact-consent label a:hover {
  color: var(--secondary);
}
.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.contact .section-subtitle {
  color: var(--gray);
}
.page-home .contact {
  padding: 0 0 4rem;
}
.contact .contact-persons {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact .contact-persons li {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
}
.contact .contact-persons li .contact-person-img {
  width: 6rem;
  height: 6rem;
  border-radius: 100%;
  overflow: hidden;
}
.contact .contact-persons li .contact-person-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.contact .contact-persons li .contact-person-info {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}
.contact .contact-persons li .contact-person-info h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.contact .contact-persons li .contact-person-info span {
  margin-bottom: 0.625rem;
}
.contact .contact-persons li .contact-person-info a {
  color: var(--secondary);
  text-decoration: none;
  width: max-content;
  transition: all 0.2s ease-in-out;
}
/* .contact .contact-persons li .contact-person-info a:hover,
.contact .contact-persons li .contact-person-info a:focus,
.contact .contact-persons li .contact-person-info a:active {
    color: var(--black);
} */
.contact .form-floating {
  margin-bottom: 1rem;
}
.contact .form-floating textarea {
  height: 8rem;
}
.form-control {
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background: none;
}
.form-control:focus,
.form-control:active {
  box-shadow: none;
  border-color: var(--secondary);
  background: none;
}
.form-floating label {
  color: var(--black);
  font-weight: 400;
}
.form-floating label span {
  color: #D10505;
}
.form-floating input {
  font-weight: 500;
  min-height: 4rem !important;
}
.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
  font-weight: 400;
}
.btn-checkbox {
  color: #636363;
  background: transparent;
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.btn-checkbox:hover,
.btn-checkbox:focus,
.btn-checkbox:active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-check+.btn:hover {
  color: #636363;
  background: transparent;
  border-color: var(--black);
}
.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}
.form-services {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  /* margin-left: 0.8rem; */
}
.form-services li {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.form-services li:last-child {
  margin-right: 0;
}
.contact .contact-form-wrapper h6 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.contact .btn-black {
  margin-top: 1rem;
}


/**
 * Footer
 */
.footer-cta {
  background: #fbfbfb;
  color: #636363;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}
.footer-cta .btn-black:hover, 
.footer-cta .btn-black:focus, 
.footer-cta .btn-black:active {
  border: 1px solid #272727;
  background: #272727;
  color: var(--white);
}
.footer-cta h6 {
  font-weight: 300;
  margin-bottom: 0;
}
.footer-cta h6 a {
  color: var(--black);
  transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
.footer-cta h6 a:hover,
.footer-cta h6 a:focus,
.footer-cta h6 a:active {
  color: var(--secondary);
}
.footer-cta img {
  max-width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--white);
  position: absolute;
  top: 0;
}
.footer-cta .footer-cta-images {
  margin-right: 2rem;
  position: relative;
  top: 0;
  width: 5.5rem;
  height: 3.5rem;
}
.footer-cta-images picture:last-child img {
  right: -1rem;
}
.footer {
  background: #fbfbfb;
  color: var(--black);
}
.footer .footer-copyright {
  padding: 2rem 0;
  border-top: 1px solid #eee;
}
.footer .footer-copyright p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.875rem;
}
.footer .footer-copyright a {
  color: var(--gray);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.footer .footer-copyright a:hover,
.footer .footer-copyright a:focus,
.footer .footer-copyright a:active {
  color: var(--black);
}
.october-partner-badge img {
  width: 10rem;
}
.footer .footer-content {
  padding: 4rem 0;
}
.footer .footer-content .nav-link {
  padding: 0;
  color: var(--gray, #747474);
  font-size: 1rem;
}
.footer .footer-content .nav-link:hover,
.footer .footer-content .nav-link:focus,
.footer .footer-content .nav-link:active {
  color: var(--black);
}
.footer .footer-content p {
  color: var(--gray);
  margin-bottom: 0;
}
.footer .footer-content h5 {
  margin-bottom: 1.5rem;
}
.footer .footer-content .nav-item {
  margin-bottom: 0.75rem;
}
.footer .footer-content .nav-item:last-child {
  margin-bottom: 0;
}
.footer-logo svg {
  width: 10rem;
  height: auto;
}
.footer-logo svg path {
  fill: var(--black) !important;
}
.footer-copyright ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-copyright ul li {
  margin-right: 0.5rem;
}
.footer-copyright ul li:last-child {
  margin-right: 0;
}
.footer-copyright ul li::after {
  content: "|";
  margin-left: 0.5rem;
  color: #eee;
}
.footer-copyright ul li:last-child::after {
  content: "";
}
.footer-copyright ul li a {
  color: var(--gray);
  font-size: 0.875rem;
  text-decoration: underline !important; 
  transition: all 0.2s ease-in-out;
}
.footer-copyright ul li a:hover,
.footer-copyright ul li a:focus,
.footer-copyright ul li a:active {
  color: var(--black);
}
.footer-socials ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0.5rem;
}
.footer-socials {
  border-top: 1px solid #eee;
  padding: 2rem 0;
  justify-content: space-between;
}
.footer-socials ul li {
  margin-bottom: 0;
}
.footer-socials ul li a {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: all 0.2s ease-in-out;
}
.footer-socials ul li:last-child {
  margin-right: 0;
}
.footer-socials ul li a:hover,
.footer-socials ul li a:focus,
.footer-socials ul li a:active {
  border-color: var(--black);
}
.footer-socials ul li a:hover a,
.footer-socials ul li a:focus a,
.footer-socials ul li a:active a {
  fill: var(--black);
}
.footer-socials ul li a {
  fill: var(--gray);
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
  margin-top: -0.25rem;
}
.footer-socials ul li a svg {
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.footer-socials ul li a:hover svg,
.footer-socials ul li a:focus svg,
.footer-socials ul li a:active svg {
  fill: var(--black);
}
.footer .verified-by-customers {
    padding: 0;
}
.footer .verified-by-customers a {
    color: var(--black);
}
.footer .verified-by-customers .google-rating .google-logo {
    width: 2.75rem;
    height: 2.75rem;
}
.footer .verified-by-customers h6 {
    margin-bottom: 0.125rem;
}
.october-partner-badge {
    display: flex;
    align-items: center;
}




/**
 * 
 * Projects page
 * 
 */
.page-projects .featured-projects {
  padding: 0 0 6rem;
}
.page-projects .featured-projects-wrapper>div:nth-child(odd) {
  transform: translate(0px, 0px);
}



/**
 * 
 * Project page
 * 
 */
.project-header {
  padding: 10rem 0 2rem;
  position: relative;
  z-index: 1;
}
.project-header .project-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.project-header .project-categories li {
  margin-right: 0.5rem;
}
.project-header .project-categories li:last-child {
  margin-right: 0;
}
.project-header .project-categories li a {
  text-decoration: none;
}
.project-header .project-categories li a h4 {
  color: var(--black);
  background: var(--white);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  box-shadow: 0 0rem 0.75rem rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.2s ease-in-out;
}
.project-header .project-categories li a h4:hover,
.project-header .project-categories li a h4:focus,
.project-header .project-categories li a h4:active {
  background: var(--black);
  color: var(--white);
}
.project-header-info {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.project-header-info li {
  margin-right: 4rem;
  margin-bottom: 1rem;
  position: relative;
}
.project-header-info li:last-child {
  margin-right: 0;
}
.project-header-info li::after {
  content: "";
  width: 1px;
  height: 80%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
}
.project-header-info li:last-child::after {
  display: none;
}
.project-header-info li a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
}
.project-header-info li a:hover,
.project-header-info li a:focus,
.project-header-info li a:active {
  color: var(--secondary);
}
.project-header-info li svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: #636363;
  stroke-width: 1.5;
  margin-left: 0rem;
  transition: all 0.2s ease-in-out;
}
.project-header-info li a:hover svg,
.project-header-info li a:focus svg,
.project-header-info li a:active svg {
  stroke: var(--secondary);
}
.project-header-info li span {
  font-weight: 600;
  text-transform: uppercase;
}
.project-header-info li h6 {
  font-weight: 400;
  margin-top: 0.5rem;
}
.project-header h1 {
  font-size: 2.275rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.project-header p {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.project-img {
  height: 56rem;
}
.project-img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.project-details {
  padding: 4rem 0 2rem;
}
.project-details img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0 0 4rem;
  border-radius: 0.5rem;
}
.project-details img:last-child {
  padding-bottom: 0;
}
.project-section {
  padding: 0 0 4rem;
}
.project-section:last-child {
  padding-bottom: 0;
}
.project-section p:last-child {
  margin-bottom: 0;
}
.project-header .project-categories {
  margin-top: 2rem;
}
.other-projects {
  padding: 4rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.other-projects .next-project-img img,
.other-projects .prev-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.other-projects .next-project-img,
.other-projects .prev-project-img {
  height: 20rem;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.other-projects .next-project,
.other-projects .prev-project {
  width: 95%;
}
.other-projects .prev-project-img-overlay::before,
.other-projects .next-project-img-overlay::before  {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--black);
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.other-projects .prev-project-img:hover .prev-project-img-overlay::before,
.other-projects .next-project-img:hover .prev-project-img-overlay::before {
  opacity: 0.75;
}
.other-projects .prev-project-img-overlay h4 {
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  width: max-content;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.other-projects .prev-project-img:hover .prev-project-img-overlay h4,
.other-projects .next-project-img:hover .prev-project-img-overlay h4 {
  opacity: 1;
}
.other-projects .prev-project-img:hover img,
.other-projects .next-project-img:hover img {
  transform: rotate(2deg) scale(1.05);
}
.testimonial {
  padding: 0 0 6rem;
  position: relative;
}
.testimonial .splide {
  visibility: visible;
}
.testimonial .splide__slide {
  width: 100%;
}
.testimonial .splide:before {
  content: "„";
  font-size: 30rem;
  color: rgb(0 0 0 / 5%);
  position: absolute;
  left: -4rem;
  top: -33rem;
  opacity: 1;
  z-index: -1;
  font-family: Georgia, serif;
}
.testimonial .testimonial-item p {
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 2.6rem;
}
.testimonial .testimonial-item .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial .testimonial-item .testimonial-author .testimonial-author-img img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  object-fit: cover;
  margin-right: 1rem;
}
.testimonial .testimonial-item .testimonial-author .testimonial-author-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.testimonial .testimonial-item .testimonial-author .testimonial-author-info h5 {
  margin-bottom: 0;
  margin-right: 0.25rem;
  font-size: 1rem;
}
.testimonial .testimonial-item .testimonial-author .testimonial-author-info span {
  font-weight: 400;
  color: var(--gray);
}
#testimonial-slider .splide__arrows.splide__arrows--ltr {
  position: absolute;
  right: 3rem;
  bottom: 1.25rem;
}
#testimonial-slider .splide__arrow--next {
  right: -3rem;
}
#testimonial-slider .splide__arrow--prev {
  left: -2.5rem;
}
#testimonial-slider .splide__arrow {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 2.5rem;
  width: 2.5rem;
  transition: all 0.2s ease-in-out;
}
#testimonial-slider .splide__arrow:hover,
#testimonial-slider .splide__arrow:focus,
#testimonial-slider .splide__arrow:active {
  /* background: rgba(0, 0, 0, 0.025); */
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#testimonial-slider .splide__arrow svg {
  stroke: rgba(0, 0, 0, 0.6);
}
.google-review-section{
    background-color: white;
}
.google-review {
  margin-top: 0;
  margin-bottom: 2rem;
  padding: 2rem;
  /*padding-right: 3rem;*/
  /*box-shadow: 0 0 2.5rem rgba(0, 0, 0, 0.1);*/
  border-radius: 1rem;
  /* max-height: 15rem; */
  /*max-height: max-content;*/
  min-height: 20.625rem;
  background-color: #ECECEE;
}
.google-review .google-review-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.google-review .google-review-item p {
  font-weight: 400;
}
.google-review .google-review-item p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  color: #414141;
}
.google-review .google-review-item .google-review-stars {
  margin-right: 0.5rem;
}
.google-review .google-review-item .google-review-stars svg {
  width: 1rem;
  height: 1rem;
  fill: #F0C03C;
  margin-right: -0.25rem;
}
.google-review .google-review-item .google-review-author h5 {
  margin-bottom: 0;
  font-weight: 700;
  font-size: 1.21rem;
}
.google-review .google-review-item .google-review-author-img {
  margin-right: 0.75rem;
}
.google-review .google-review-item .google-review-author-img picture {
    display: block;
    width: 4.5rem;
}
.google-review .google-review-item .google-review-author-img picture img {
    border-radius: 50%;
}
.google-review .google-review-item .google-review-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.5rem;
}
.google-review .google-review-item .google-review-rating .google-review-date span {
  color: var(--gray);
}
.google-review .google-review-item .google-review-rating .google-review-date {
  margin-top: 0.25rem;
}

.google-review-header p{
    color: black !important;
    font-size: 1rem !important;
}
.project-header .breadcrumb {
  padding: 0;
}
.project-header .breadcrumb a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.project-header .breadcrumb a:hover,
.project-header .breadcrumb a:focus,
.project-header .breadcrumb a:active {
  color: var(--secondary);
}
h2.feature-title {
  font-size: 1.75rem;
  font-weight: 600;
  max-width: fit-content;
  color: var(--black);
  border-radius: 0.25rem;
  margin-bottom: 1.25rem;
  text-decoration: underline;
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.25rem;
  text-decoration-color: var(--primary);
}



/**
 * 
 * About page
 * 
 */
.about-header {
  background: var(--black);
  color: var(--white);
  margin-bottom: 20rem;
  padding-bottom: 0rem;
  padding-top: 10rem;
}
.about-header .about-header-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 4rem;
}
.about-header .about-header-title span {
  color: var(--primary);
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
.about-header .about-header-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 2rem;
}
.about-header .about-img {
  height: 48rem;
  width: 100%;
  position: relative;
  margin-top: -18rem;
  top: 18rem;
}
.about-header .about-img img {
  border-radius: 0.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.page-about .breadcrumb-wrapper {
  margin: 0;
}
.offices {
  padding: 0 0 4rem;
}
.offices .offices-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.offices .offices-map img {
  max-width: 80%;
}
.page-about .services {
  padding: 0;
}
.page-about .clients {
  padding: 1rem 0 6rem;
}
.page-about .testimonials {
  padding: 6rem 0 4rem;
}
.page-about .contact {
  padding: 2rem 0 4rem;
}


/**
 * 
 * Blog page
 * 
 */
.page-blog .blog {
  padding: 6rem 0 0;
}



/**
 * 
 * Post page
 * 
 */
.page-post .breadcrumb-wrapper-dark {
  padding: 10rem 0 6rem;
}
.post-img {
  height: 36rem;
  margin-top: -4rem;
  border-radius: 0.5rem;
}
.post-image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.post-content {
  padding: 4rem 0 0;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.post-content p {
  width: 100%;
}
.post-content img {
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 56rem;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: 0.5rem;
  overflow: hidden;
}
.post-content p:last-child img:last-child {
  margin-bottom: 0;
}
.page-post .blog {
  padding: 6rem 0 0;
}
.post-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.post-author .post-author-image {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}
.post-author .post-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-author .post-author-title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.post-author .post-date {
  margin-bottom: 0;
  font-weight: 300;
}


/**
 * 
 * Services page
 * 
 */
.service-card .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
}
.service-card .service-img {
  height: 20rem;
  overflow: hidden;
  border-radius: 0.5rem;
  /* margin-top: 1rem; */
  margin-bottom: 2rem;
}
.service-card .service-img:hover img,
.service-card .service-img:focus img,
.service-card .service-img:active img {
  transform: rotate(2deg) scale(1.05);
}
.clients {
  padding: 2rem 0;
}
.clients .section-title,
.clients .section-subtitle {
  text-align: center;
}
.clients img {
  filter: brightness(0);
  -webkit-filter: brightness(0);
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.clients a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 4rem;
  padding: 0 2rem;
}
.clients a:hover img,
.clients a:focus img,
.clients a:active img {
  filter: brightness(0);
  -webkit-filter: brightness(0);
}
.clients .section-subtitle {
  color: var(--gray);
}
.page-service .services .service-card::after,
.page-project .services .service-card::after  {
  display: none;
}



/**
 * 
 * Service page
 * 
 */
.page-service .featured-projects .featured-projects-wrapper>div:nth-child(even) {
  transform: translate(0px, 0px);
}
.page-service .featured-projects .f-project-card {
  margin-bottom: 0;
}
/* Service page redesign */
.service-intro-section {
  padding: 4rem 0 2rem;
  background: #f7f8f2;
}
.service-intro-section .service-intro {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--black);
}
.service-features {
  padding: 0;
}
.service-feature-row {
  padding: 5rem 0;
}
.service-feature-light {
  background: var(--white);
}
.service-feature-dark {
  background: var(--black);
}
.service-feature-dark .service-feature-title {
  color: var(--white);
}
.service-feature-dark .service-feature-body {
  color: rgba(255,255,255,0.7);
}
.service-feature-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.service-feature-body {
  font-size: 0.95rem;
  line-height: 1.8;
  font-weight: 300;
}
.service-feature-media {
  border-radius: 0;
  width: 100%;
  object-fit: cover;
}
.service-body-section {
  padding: 5rem 0 3rem;
  background: #f7f8f2;
}
.service-subs {
  background: var(--white);
  padding: 5rem 0;
}
.service-subs .ai-why-title {
  color: var(--black);
}
.page-service .featured-projects {
  background: var(--black);
  padding: 5rem 0 6rem;
}
.service-inline-cta {
  padding: 3rem 0;
  background: var(--black);
}
.service-inline-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.service-inline-cta-text h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.service-inline-cta-text p {
  color: rgba(255,255,255,0.6);
  margin: 0;
  font-size: 0.9rem;
}
/* legacy */
.service-content {
  padding: 6rem 0 5rem;
}
.service-content p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75rem;
}
.service-content .service-description a {
  color: var(--secondary);
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.service-content .service-description a:hover,
.service-content .service-description a:focus,
.service-content .service-description a:active {
  color: var(--black);
}
.page-service .services .service-card,
.page-project .services .service-card {
  position: relative;
  border: 0;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  padding: 3rem;
  border-radius: 0.5rem;
  display: flex;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.page-service .services .service-card:hover,
.page-service .services .service-card:focus,
.page-service .services .service-card:active,
.page-project .services .service-card:hover,
.page-project .services .service-card:focus,
.page-project .services .service-card:active {
  background: #eee;
  /* transform: rotate3d(30, -15, 4, 24deg);
  -webkit-transform: rotate3d(30, -15, 4, 24deg); */
}
.page-service .services .service-card p,
.page-project .services .service-card p{
  margin-bottom: 0;
}
.page-service .services .service-card .service-title,
.page-project .services .service-card .service-title {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-service .services .service-card .service-title svg,
.page-project .services .service-card .service-title svg{
  stroke-width: 1.5;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.page-service .services .service-card:hover .service-title svg,
.page-service .services .service-card:focus .service-title svg,
.page-service .services .service-card:active .service-title svg,
.page-project .services .service-card:hover .service-title svg,
.page-project .services .service-card:focus .service-title svg,
.page-project .services .service-card:active .service-title svg {
  opacity: 1;
}
.page-service .featured-projects-wrapper {
  margin-top: 0;
}
.page-service .services a {
  text-decoration: none;
  color: var(--black);
}
.page-service .services .service-card .service-icon {
  width: 3.5rem;
  height: fit-content;
  overflow: hidden;
  margin-right: 1rem;
  margin-top: 0.5rem;
  opacity: 0.5;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}
.page-service .services .service-card .service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-service .services .service-card:hover .service-icon,
.page-service .services .service-card:focus .service-icon,
.page-service .services .service-card:active .service-icon {
  opacity: 1;
}
.service-content .service-content-img {
  height: 28rem;
  border-radius: 0.5rem;
}
.service-content p {
  padding-right: 2rem;
}
.service-content .service-content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.service-content .service-content-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-service .featured-projects .section-title,
.page-service .featured-projects .section-subtitle {
  text-align: center;
}
.page-service .testimonials {
  padding: 8rem 0 4rem;
}
.service-project {
  width: 100%;
  height: 22rem;
  border-radius: 0.5rem;
}
.service-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.service-content-btns {
  display: flex;
  align-items: center;
}
.service-content-btns .btn:last-child {
  margin-left: 1rem;
}
.service-technology {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  /* margin-left: 2rem; */
  margin-top: 1rem;
}
.service-technology li {
  margin-right: 2rem;
  margin-bottom: 1rem;
}
.service-technology li:last-child {
  margin-right: 0;
}
.service-technology li a {
  text-decoration: none;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.service-technology li a:hover,
.service-technology li a:focus,
.service-technology li a:active {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  opacity: 1;
}
.service-technology li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.2s ease-in-out;
}
.service-technology li a .tech-img {
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  object-fit: contain;
}
.service-technology li a svg {
  width: 2.5rem;
  height: 2.5rem;
  transition: all 0.2s ease-in-out;
}
.cta-images {
  position: relative;
  width: 12rem;
  height: 7rem;
  margin-bottom: 2rem;
}
.cta-images img:last-child {
  right: -1rem;
}
.cta-images img {
  max-width: 7rem;
  height: 7rem;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--black);
  position: absolute;
  top: 0;
}
.page-service .featured-projects .f-project-card .f-project-title {
  font-size: 1.4rem;
}
.verified-by-customers {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.verified-by-customers-link {
  margin-right: 2.5rem;
}
.verified-by-customers a {
  text-decoration: none;
  color: var(--white);
}
.verified-by-customers .verified-by-customers-link a {
  color: var(--white);
  font-size: 0.875rem;
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.verified-by-customers .verified-by-customers-link a svg {
  stroke: var(--white);
  width: 1.25rem;
  height: 1.25rem;
  margin-top: -0.125rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.verified-by-customers .verified-by-customers-link a:hover,
.verified-by-customers .verified-by-customers-link a:focus,
.verified-by-customers .verified-by-customers-link a:active {
  color: var(--secondary);
}
.verified-by-customers .verified-by-customers-link a:hover svg,
.verified-by-customers .verified-by-customers-link a:focus svg,
.verified-by-customers .verified-by-customers-link a:active svg {
  stroke: var(--secondary);
}
.verified-by-customers h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.verified-by-customers h6 {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0.25rem;
}
.verified-by-customers .google-rating {
  display: flex;
  align-items: center;
}
.verified-by-customers .google-rating .google-logo {
  width: 2.875rem;
  height: 2.875rem;
  margin-right: 0.5rem;
  margin-top: -0.25rem;
}
.verified-by-customers .google-review-rating {
  display: flex;
  align-items: center;
  color: #F0C03C;
}
.verified-by-customers .google-review-rating .google-review-stars {
  margin-left: 0.5rem;
  margin-bottom: 0.25rem;
}
.verified-by-customers .google-review-rating .google-review-stars svg {
  width: 1rem;
  height: 1rem;
  fill: #F0C03C;
  margin-right: -0.25rem;
}
.page-service .breadcrumb-wrapper-dark {
  padding: 10rem 0 4rem;
  overflow: hidden;
  position: relative;
}
.page-service .breadcrumb-wrapper-dark::before {
  content: '';
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/hero-bg.png) no-repeat;
  background-size: cover;
  background-position: 100px -260px;
  opacity: 0.5;
}
.page-service .breadcrumb-wrapper-dark .col-lg-12 {
  position: relative;
  z-index: 1;
}



/**
 * 
 * CTA Banner
 * 
 */
.cta-banner-wrapper .cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 4rem 0;
  border-radius: 1rem;
  margin: 3rem 0 2rem;
}
.cta-banner-wrapper .cta-banner .btn-white:hover,
.cta-banner-wrapper .cta-banner .btn-white:focus,
.cta-banner-wrapper .cta-banner .btn-white:active {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.cta-banner-wrapper .cta-banner .cta-icon {
  font-size: 6rem; 
  margin-bottom: 2rem;
  background: var(--primary);
  padding: 1rem;
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner-wrapper .cta-banner .section-title {
  margin-bottom: 2rem;
}


/**
 * 
 * Contact page
 * 
 */
#map {
  height: 100%;
  min-height: 32rem;
}


/**
 * 
 * Career page
 * 
 */
.career {
  padding: 4rem 0 6rem;
}
.career-list {
  margin: 0;
  padding: 0;
  list-style: none
}
.career-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
/* .career-list li:last-child {
  border-bottom: 0;
} */
.career-list li:hover,
.career-list li:focus,
.career-list li:active {
  border-bottom: 1px solid var(--secondary);
}
.career-list li:hover .career-item h3,
.career-list li:focus .career-item h3,
.career-list li:active .career-item h3 {
  color: var(--secondary);
}
.career-list li:hover button,
.career-list li:focus button,
.career-list li:active button {
  transform: translateX(1rem);
}
.career-list li:hover button svg,
.career-list li:focus button svg,
.career-list li:active button svg {
  stroke: var(--secondary);
}
.career-item {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  color: var(--black);
}
.career-item h3 {
  font-weight: 600;
  margin-bottom: 0;
  width: 100%;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.career-item h6 {
  margin-bottom: 0;
  /* font-size: 1.125rem; */
  font-size: 1rem;
  font-weight: 300;
  color: #747474;
}
h6.career-type {
  margin-left: 1.5rem;
  border: 1px solid var(--black);
  border-radius: 4rem;
  padding: 0.5rem 1rem;
  color: var(--black);
}
.career-item button {
  border: 0;
  background: transparent;
  color: var(--black);
  margin-left: 2rem;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.career-item button svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.5;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.career-header {
  background: var(--black);
  color: var(--white);
  margin-bottom: 6rem;
  padding-bottom: 12rem;
  padding-top: 10rem;
}
.career-header .career-header-title {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 4rem;
}
.career-header .career-header-title span {
  color: var(--primary);
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 0.25rem;
  text-underline-offset: 0.25rem;
}
.career-header .career-header-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 2rem;
}
.career-header .career-img {
  height: 16rem;
  width: 100%;
  position: relative;
  margin-top: -18rem;
  top: 18rem;
}
.career-header .career-img img {
  border-radius: 0.5rem;
  width: 32.29%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  margin-right: 1rem;
}
.career-header .career-img img:last-child {
  margin-right: 0;
}
.career-header .career-img img:nth-child(1) {
  transform: rotate(-2deg);
}
.career-header .career-img img:nth-child(2) {
  transform: rotate(2deg);
}
.career-header .career-img img:nth-child(3) {
  transform: rotate(-2deg);
}
.career-header .badge {
  position: absolute;
  top: -4rem;
  right: -2rem;
  animation: pulse 2s infinite;
  animation-delay: 10s;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.career-header .badge svg {
  width: 7rem;
  height: auto;
}
.page-career .clients {
  padding: 0 0 6rem;
}


/**
 * 
 * Career detail page
 * 
 */
.page-career-detail .breadcrumb-wrapper-dark p {
  width: 90%;
}
.send-cv {
  padding: 4rem 0 6rem;
}
.send-cv-form-wrp form {
  padding: 0 4rem;
}
.send-cv-form-wrp .form-floating {
  margin-bottom: 1rem;
}
.send-cv-form-wrp .form-floating textarea {
  height: 8rem;
}
.send-cv-form-wrp .btn-black {
  margin-top: 1rem;
}
.send-cv-form-wrp .file-uploads {
  padding: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
}
.send-cv-form-wrp .file-uploads .item {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.send-cv-form-wrp .file-uploads .item:last-child {
  margin-right: 0;
}
.send-cv-form-wrp .file-uploads .file-upload-form-control-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.send-cv-form-wrp .file-uploads .file-upload-file {
  display: none;
}
.send-cv-form-wrp .file-uploads .file-form-label {
  min-height: 56px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  border: 1px dashed #D8D8D8;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.send-cv-form-wrp .file-uploads .file-form-label svg {
  stroke-width: 1.5;
  margin-right: 0.5rem;
  margin-top: -0.125rem;
}
.send-cv-form-wrp .file-uploads .file-form-label:hover,
.send-cv-form-wrp .file-uploads .file-form-label:focus,
.send-cv-form-wrp .file-uploads .file-form-label:active {
  border: 1px dashed var(--black);
}
.job-offer {
  padding: 6rem 0 0; 
}
.job-offer-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.job-offer-info ul li {
  /* margin-bottom: 1.5rem; */
  padding: 1.5rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}
.job-offer-info ul li:first-child {
  padding-top: 0;
}
.job-offer-info ul li:last-child {
  margin-bottom: 0;
  border: 0;
}
.job-offer-info ul li span {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.875rem;
  color: #747474;
}
.job-offer-info ul li h6 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0;
}
.job-offer .job-offer-content {
  padding-left: 4rem;
}
.job-offer .job-offer-content p {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.625rem;
}
.job-offer .job-offer-content ul {
  font-size: 1rem;
  margin-bottom: 2rem;
}
.job-offer .job-offer-content ul li {
  margin-bottom: 0.25rem;
}
.job-offer .job-offer-content h5 {
  font-weight: 600;
}


/**
 * 
 * Thank you page
 * 
 */
.thank-you {
  padding: 2rem 0 6rem;
}
.thank-you .inner-content {
  text-align: center;
  margin: auto;
  max-width: 75%;
  margin-top: 3rem;
}
section.thank-you strong {
  font-weight: 600;
}
.thank-you .thanks-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  padding: 20px;
  margin: 0;
}
.inner-content p {
  font-size: 16px;
  line-height: 24px;
}
a.navbar-brand img {
  width: 140px;
}
.thank-you .thanks-title span {
  width: 145px;
  height: 145px;
  display: inline-block;
  background-size: 100%;
  margin: 0 10px;
}
.thank-you .thanks-text {
  margin-bottom: 15px;
}
.thank-you p {
  margin-bottom: 30px;
}
.thank-you p a {
  color: var(--black);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}
.thank-you p a:hover,
.thank-you p a:focus,
.thank-you p a:active {
  color: var(--secondary);
}
.about-area {
  padding-bottom: 4rem;
}
.thank-you {
  margin-top: 6rem;
}
.thank-you svg.icon.icon-tabler.icon-tabler-mail-check {
  width: 70px;
  height: 70px;
  padding: 10px;
  background: var(--primary);
  stroke: var(--black);
  stroke-width: 1;
  border-radius: 10%;
}



/**
 * 
 * CMS page
 * 
 */
.cms-page {
    padding: 4rem 0;
}

/* Reviews-slider */
#reviews-slider .splide__slide {
  opacity: 0.5;
  transition: opacity 0.3s;
  max-width: 337px;
  width: 100%;
}
#reviews-slider .splide__slide.is-visible {
  opacity: 1;
}

.google-review-top p{
    font-size: 1rem !important;
    color: black !important;
}

.google-review-section [type=button]:not(:disabled),
.google-review-section [type=reset]:not(:disabled),
.google-review-section [type=submit]:not(:disabled),
.google-review-section button:not(:disabled) {
    border: none;
    background: none;
}

slider-controls-row {
  display: flex;
  align-items: center;
  gap: 16px; /* Medzera medzi šípkami a barom */
  margin-top: 16px;
}

.slider-progress-bar {
  width: 80%;
  flex: 1 1 auto;
  height: 4px;
  background: #F1F1F3;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.slider-progress-bar__inner {
  height: 100%;
  width: 0%;
  background: var(--primary);
  transition: width 0.4s cubic-bezier(.77,0,.18,1);
}

.slider-controls-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.refenreces-header{
    margin-bottom: 0 !important;
    padding-bottom: 15rem !important;
}
.review-short{
    font-size: 14px !important;
}
.review-full{
    font-size: 14px;
}
.reference-card-top {
    width: 535px;
    height: 194px;
    background-color: #ECECEE;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow:
    0px 10px 22px 0px rgba(0,0,0,0.05),
    0px 39px 39px 0px rgba(0,0,0,0.04),
    0px 88px 53px 0px rgba(0,0,0,0.03),
    0px 157px 63px 0px rgba(0,0,0,0.01),
    0px 245px 69px 0px rgba(0,0,0,0);
}

/* Nastavenie row pre rovnakú výšku stĺpcov */
.reference-card-top .row {
    min-height: calc(100% - 3rem); /* Odpočítame padding */
}

/* Container pre obrázok */
.google-review-author-img-top {
    border-radius: 1rem !important;
}

/* Štýlovanie obrázka */
.google-review-author-img-top img {
    border-radius: 1rem !important;
    
}

/* Štýlovanie textu a nadpisov */
.google-author-top h5 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1.21rem;
}

.review-text-top {
    font-size: 14px;
}

.review-text-author-top p {
    font-size: 16px !important;
}

.references-top-container{
    position: absolute;
    top: -19%;
}
.references-page-container{
    margin-top: 9rem;
}
.google-review-author p{
    margin-bottom: 0 !important
}
.google-review-project{
    background: #ffffff;
    box-shadow: 0 8px 32px 0 rgba(60, 60, 60, 0.12);
    min-height: fit-content;
}
/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 0 !important;
}
.faq-btn {
  background: transparent !important;
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.25rem 1.5rem;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.faq-btn::after {
  filter: invert(1);
}
.faq-btn:not(.collapsed) {
  color: var(--primary) !important;
}
.faq-body {
  color: #aaa;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
  background: transparent;
}

.faq-body strong {
  color: var(--white);
  font-weight: 600;
}
.faq-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.faq-link:hover {
  color: var(--primary);
  opacity: 0.7;
}

/* Reference cards - referencie page */
.ref-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  transition: border-color 0.2s;
}
.ref-card:hover {
  border-color: rgba(215, 229, 44, 0.25);
}
.ref-card-stars {
  display: flex;
  gap: 3px;
}
.ref-card-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #bbb;
  line-height: 1.7;
  margin: 0;
}
.ref-more-btn {
  background: none;
  border: none;
  padding: 0;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.ref-card-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ref-card-author-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  overflow: hidden;
}
.ref-card-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ref-card-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ref-card-author-info strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.ref-card-author-info span {
  font-size: 0.78rem;
  font-weight: 300;
  color: #777;
}
.ref-card-company {
  color: var(--primary) !important;
}

/* Ref clients grid */
.ref-clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ref-client-tag {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.65rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.ref-client-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}
