:root {
  --bs-primary: #0967df;
  --bs-primary-rgb: 9, 103, 223;
  --brand-navy: #041a35;
  --brand-ink: #101827;
  --brand-soft: #f4f8fd;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--brand-ink);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
}

.icon {
  width: 20px;
  height: 20px;
  vertical-align: -0.125em;
}

.icon-sm {
  width: 17px;
  height: 17px;
  vertical-align: -0.125em;
}

.btn-primary .icon,
.services-section .service-item img,
.footer-icon img,
.footer-section p .icon-sm {
  filter: brightness(0) invert(1);
}

.feature-icon,
.text-primary img {
  filter: brightness(0) saturate(100%) invert(31%) sepia(96%) saturate(2574%) hue-rotate(202deg) brightness(92%) contrast(94%);
}

img.text-danger {
  filter: brightness(0) saturate(100%) invert(30%) sepia(96%) saturate(2692%) hue-rotate(337deg) brightness(95%) contrast(94%);
}

.logo {
  color: var(--bs-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 800;
  line-height: 1;
}

.logo:hover {
  color: var(--bs-primary);
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-logo img {
  display: block;
  width: auto;
  height: 52px;
}

.logo-mark {
  color: var(--brand-navy);
}

.footer-logo,
.footer-logo .logo-mark,
.footer-logo:hover {
  color: #ffffff;
}

.fw-black {
  font-weight: 900;
}

.py-lg-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.navbar {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.navbar .nav-link {
  color: #172235;
}

.navbar .nav-link:hover,
.navbar .nav-link:active {
  color: var(--bs-primary);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  width: fit-content;
  padding: 0.25rem;
  background: #eef4fc;
  border: 1px solid rgba(var(--bs-primary-rgb), 0.14);
  border-radius: 999px;
}

.language-switcher__link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 36px;
  padding: 0.35rem 0.75rem;
  color: #172235;
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 900;
  line-height: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.language-switcher__form {
  display: contents;
}

.language-switcher__link:hover {
  color: var(--bs-primary);
}

.language-switcher__link.is-active {
  color: #ffffff;
  background: var(--bs-primary);
  box-shadow: 0 8px 18px rgba(var(--bs-primary-rgb), 0.18);
}

.btn-primary {
  --bs-btn-bg: #0967df;
  --bs-btn-border-color: #0967df;
  --bs-btn-hover-bg: #0152bc;
  --bs-btn-hover-border-color: #0152bc;
  --bs-btn-active-bg: #01449d;
  --bs-btn-active-border-color: #01449d;
}

.btn-outline-primary {
  --bs-btn-color: #0967df;
  --bs-btn-border-color: #0967df;
  --bs-btn-hover-bg: #0967df;
  --bs-btn-hover-border-color: #0967df;
}

.hero-section,
.page-hero {
  background:
    radial-gradient(circle at 92% 6%, rgba(9, 103, 223, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.eyebrow {
  margin-bottom: 0.9rem;
  color: var(--bs-primary);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.16;
}

.hero-image {
  width: 100%;
  min-height: 430px;
  max-height: 560px;
  object-fit: cover;
  border-bottom-left-radius: 4rem;
}

.content-image {
  width: 100%;
  min-height: 470px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  right: 1.5rem;
  bottom: -1.5rem;
  min-width: 150px;
}

.feature-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--bs-primary);
}

.project-card,
.object-card {
  color: var(--brand-ink);
  border-color: rgba(231, 237, 246, 0.9);
  border-radius: 0.5rem;
  box-shadow: 0 14px 30px rgba(13, 39, 76, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.project-card:hover,
a.object-card:hover {
  color: var(--brand-ink);
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(13, 39, 76, 0.12);
}

.project-card .card-img-top {
  height: 180px;
  object-fit: cover;
}

.object-card .card-img-top {
  height: 260px;
  object-fit: cover;
}

.services-section {
  color: #ffffff;
  background: linear-gradient(135deg, #096de7 0%, #01449d 100%);
}

.service-item {
  display: grid;
  place-items: center;
  gap: 0.9rem;
  min-height: 120px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
}

.service-item img {
  width: 42px;
  height: 42px;
}

.service-item span {
  font-size: 0.9rem;
  font-weight: 800;
}

.stat-card {
  border-color: rgba(231, 237, 246, 0.9);
  box-shadow: 0 13px 28px rgba(13, 39, 76, 0.05);
}

.stat-icon {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0.75rem;
  background: linear-gradient(135deg, #6ea8ff, var(--bs-primary));
  border-radius: 0.5rem;
}

.stat-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
}

.stat-card span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-card {
  border-radius: 0.75rem;
}

.form-control {
  background-color: #f3f6fa;
  border-color: transparent;
}

.form-control:focus {
  background-color: #ffffff;
  border-color: rgba(var(--bs-primary-rgb), 0.45);
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.12);
}

.object-carousel img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.object-carousel__trigger {
  display: block;
  width: 100%;
  line-height: 0;
  padding: 0;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.object-carousel__trigger img {
  display: block;
  width: 100%;
}

.object-image-modal .modal-dialog {
  max-width: min(1180px, calc(100vw - 2rem));
}

.object-image-modal__close {
  position: absolute;
  top: -2.25rem;
  right: 0;
  z-index: 2;
  opacity: 1;
}

.object-image-modal__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 6rem);
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.35);
}

.carousel-control-prev,
.carousel-control-next {
  width: 12%;
}

.footer-section {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 2% 10%, rgba(9, 103, 223, 0.26), transparent 30%),
    #03182f;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.78);
}

.footer-icon {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.footer-icon img {
  width: 22px;
  height: 22px;
}

.footer-map-column {
  display: flex;
  justify-content: flex-end;
}

.footer-map {
  width: 100%;
  max-width: 360px;
  height: 190px;
  border: 0;
}

.partners-section {
  margin-top: 50px;
  padding: 4px 0 28px;
  text-align: center;
}

.partners-section h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 900;
}

.logo-marquee {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  margin: 20px auto 0;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 58px;
  align-items: center;
}

.logo-track img {
  width: 80px;
  height: 80px;
  color: #5c6474;
  filter: grayscale(100%);
  opacity: 0.72;
  font-size: 22px;
  font-weight: 800;
  transition: filter 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.logo-track img:hover {
  color: var(--purple);
  filter: grayscale(0%);
  opacity: 1;
}



@media (max-width: 991.98px) {
  .py-lg-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-image,
  .content-image {
    min-height: 340px;
  }

  .object-carousel img {
    height: 430px;
  }

  .footer-map-column {
    justify-content: flex-start;
  }

  .footer-map {
    max-width: none;
  }
}

@media (max-width: 575.98px) {
  .logo {
    font-size: 25px;
  }

  .navbar-logo img {
    height: 56px;
  }

  .hero-image,
  .content-image {
    min-height: 300px;
    border-bottom-left-radius: 2rem;
  }

  .experience-badge {
    right: 1rem;
    bottom: -1rem;
    min-width: 130px;
    padding: 1rem !important;
  }

  .project-card .card-img-top,
  .object-card .card-img-top {
    height: 210px;
  }

  .object-carousel img {
    height: 330px;
  }
}
