@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans&display=swap");
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css");
@font-face {
  font-family: "myriad_pro";
  src: url("fonts/myriadpro-bold.woff2") format("woff2"), url("fonts/myriadpro-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "myriad_pro";
  src: url("fonts/myriadpro-light.woff2") format("woff2"), url("fonts/myriadpro-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "myriad_pro";
  src: url("fonts/myriadpro-regular.woff2") format("woff2"), url("fonts/myriadpro-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "myriad_pro";
  src: url("fonts/myriadpro-semibold.woff2") format("woff2"), url("fonts/myriadpro-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  /*Wordpress Image Hack*/
}
img.alignleft {
  float: left;
  margin: 15px 15px 15px 0;
}
img.aligncenter {
  margin: 15px auto;
  float: none;
  display: block;
}
img.alignright {
  float: right;
  margin: 15px 0 15px 15px;
}

/**
 * Basic styles for links
 */
a {
  color: #0f5ea8;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus {
  color: rgb(11.6557377049, 73.0426229508, 130.5442622951);
  text-decoration: none;
  outline: 0;
}

label {
  cursor: pointer;
}

/**
 * Basic typography style for copy text
 */
body {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 16px;
  color: #1c2b40;
  line-height: 1.5;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: #1c2b40;
  font-family: "Objektiv Mk1", sans-serif;
}

.secTitle {
  display: flex;
  font-weight: 700;
  align-items: center;
  margin-bottom: 30px;
  font-size: 32px;
  color: #1c2b40;
}
@media (max-width: 991px) {
  .secTitle {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .secTitle {
    font-size: 24px;
  }
}
.secTitle::after {
  content: "";
  flex: 1;
  height: 2px;
  margin-left: 10px;
  background-color: #0f5ea8;
}
.secTitle.white {
  color: #ffffff;
}
.secTitle.white::after {
  background-color: #ffffff;
}

.pagination {
  list-style: none;
  padding-left: 0;
  margin: 0;
  justify-content: center;
}
.pagination li {
  margin: 5px 15px;
}
.pagination li a {
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-size: 16px;
  color: #1c2b40;
}
.pagination li a.active, .pagination li a:hover {
  color: #0f5ea8;
  border-bottom-color: #0f5ea8;
}

/**
 * Clear inner floats
 */
.clear::after {
  content: "";
  display: block;
  clear: both;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 1280px;
}

.btn {
  white-space: normal;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 24px;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  color: #ffffff;
  background-color: #0f5ea8;
  border-color: transparent;
  border-width: 2px;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-primary.active, .btn-primary:active, .btn-primary.focus, .btn-primary:focus, .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary:hover {
  color: #ffffff;
  background-color: rgb(11.6557377049, 73.0426229508, 130.5442622951);
  border-color: transparent;
  box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active {
  background-color: rgb(11.6557377049, 73.0426229508, 130.5442622951);
  border-color: transparent;
  box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
}

.btn-outline-primary {
  color: #ffffff;
  background-color: transparent;
  border-color: #0f5ea8;
  border-width: 2px;
  font-weight: 600;
  border-radius: 5px;
}
.btn-outline-primary.active, .btn-outline-primary:active, .btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary.active.focus, .btn-outline-primary.active:focus, .btn-outline-primary.active:hover, .btn-outline-primary:active.focus, .btn-outline-primary:active:focus, .btn-outline-primary:active:hover, .btn-outline-primary:hover {
  color: #ffffff;
  background-color: #0f5ea8;
  border-color: transparent;
  box-shadow: none;
}
.btn-outline-primary:not([disabled]):not(.disabled).active, .btn-outline-primary:not([disabled]):not(.disabled):active {
  color: #ffffff;
  background-color: rgb(35.1, 182.6773333333, 255);
  border-color: transparent;
  box-shadow: none;
}
.btn-outline-primary:not([disabled]):not(.disabled).active:focus, .btn-outline-primary:not([disabled]):not(.disabled):active:focus {
  box-shadow: none;
}

.btn-secondary {
  color: #0a3768;
  background-color: #1eb5ff;
  border-radius: 100px;
  font-weight: 700;
  padding: 10px 24px;
}
.btn-secondary.active, .btn-secondary:active, .btn-secondary.focus, .btn-secondary:focus, .btn-secondary.active.focus, .btn-secondary.active:focus, .btn-secondary.active:hover, .btn-secondary:active.focus, .btn-secondary:active:focus, .btn-secondary:active:hover, .btn-secondary:hover {
  color: #0a3768;
  background-color: rgb(0, 157.04, 234);
  border-color: transparent;
  box-shadow: none;
}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active {
  background-color: rgb(0, 157.04, 234);
  border-color: transparent;
  box-shadow: none;
}
.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus {
  box-shadow: none;
}

.form-group:not(:last-child) {
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: #1c2b40;
  color: #1c2b40;
}

.form-control {
  height: 40px;
  padding: 0 15px;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 16px;
  color: #1c2b40;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-control:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-control:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-control:focus {
  border: 1px solid #5cb3fd;
  outline: 0;
  box-shadow: none;
}

.error {
  display: block;
  padding-top: 5px;
  font-size: 15px;
  color: #0f5ea8;
}

.custom-select {
  background: url("../images/select-arrow.png") right center no-repeat;
  background-size: 24px 40px;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:focus {
  background: url("../images/select-arrow-down.png") right center no-repeat;
  background-size: 24px 40px;
}

input[type=radio] {
  width: 20px;
  height: 20px;
  outline: 0;
  cursor: pointer;
  margin: -4px 0 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  border: 1px solid #586779;
  border-radius: 100%;
  position: relative;
  display: inline-block;
  background-color: transparent;
}
input[type=radio]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #586779;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  opacity: 0;
}
input[type=radio]:checked::before {
  opacity: 1;
}
input[type=radio]:disabled {
  cursor: not-allowed;
  background-color: grey;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  outline: 0;
  cursor: pointer;
  margin: -4px 0 0 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  vertical-align: middle;
  border: 1px solid #1c2b40;
  border-radius: 3px;
  position: relative;
  display: inline-block;
  background-color: transparent;
}
input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: none;
  width: 8px;
  height: 14px;
  margin-top: -9px;
  margin-left: -4px;
  transition: all 0.3s ease-in-out;
  border-style: solid;
  border-color: #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg);
}
input[type=checkbox]:checked {
  border-color: #0f5ea8;
  background: #0f5ea8;
  color: #fff;
}
input[type=checkbox]:checked::before {
  opacity: 1;
}
input[type=checkbox]:disabled {
  background-color: grey;
  cursor: not-allowed;
}

textarea.form-control {
  min-height: 126px;
  resize: none;
}

.accordion .accordion-item {
  border: 0;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
}
.accordion .accordion-item:not(:last-child) {
  margin-bottom: 12px;
}
.accordion .accordion-item .accordion-header {
  display: block;
  cursor: pointer;
}
.accordion .accordion-item .accordion-header .accordion-button {
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  color: #1c2b40;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  border-bottom: 0;
  font-weight: 600;
  display: flex;
  position: relative;
  align-items: center;
  font-family: "Objektiv Mk1", sans-serif;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-left: 5px solid #0f5ea8;
}
@media (max-width: 575px) {
  .accordion .accordion-item .accordion-header .accordion-button {
    display: block;
  }
}
.accordion .accordion-item .accordion-header .accordion-button:after {
  position: absolute;
  top: calc(50% - 12px);
  right: 10px;
  width: 24px;
  height: 24px;
  background-size: 24px;
  background-image: url("../images/accordian-icon-close.png");
  background-repeat: no-repeat;
  background-position: center center;
}
.accordion .accordion-item .accordion-header .accordion-button.collapsed {
  box-shadow: none;
  border-left: 1px solid rgba(0, 0, 0, 0.5);
}
.accordion .accordion-item .accordion-header .accordion-button.collapsed:after {
  background-image: url(../images/accordian-icon-open.png);
}
.accordion .accordion-item .accordion-header .accordion-button small {
  padding-top: 5px;
  padding-right: 40px;
  margin-left: auto;
}
@media (max-width: 575px) {
  .accordion .accordion-item .accordion-header .accordion-button small {
    display: block;
  }
}

/* --- Buttons Animation --- */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) ease-in-out;
  z-index: 1;
}
.btn__text {
  position: relative;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) ease-in-out;
}
.btn::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) ease-in-out;
}

.btn-glass {
  backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 17px 33px;
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  transition: all 0.3s ease-in-out;
}
.header__navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}
@media (max-width: 1199px) {
  .header__navbar {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .header__navbar {
    padding: 12px 0;
  }
}
.header__logo-sprite {
  display: flex;
  gap: 1px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.header__logo-sprite .icon-part {
  height: 44.4px;
  width: 45.6px;
  position: relative;
  overflow: hidden;
}
.header__logo-sprite .icon-part img {
  position: absolute;
  height: 214.7%;
  width: 208.75%;
  left: -54.38%;
  top: -29.61%;
  max-width: none;
}
.header__logo-sprite .text-part {
  height: 28.1px;
  width: 102.65px;
  position: relative;
  overflow: hidden;
}
.header__logo-sprite .text-part img {
  position: absolute;
  height: 549.19%;
  width: 150.49%;
  left: -24.3%;
  top: -333.56%;
  max-width: none;
}
.header__menu {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin: 0;
  gap: 40px;
}
@media (max-width: 1199px) {
  .header__menu {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .header__menu {
    display: none;
  }
}
.header__menu li a {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #111827;
  text-decoration: none;
  line-height: 24px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .header__menu li a {
    font-size: 15px;
  }
}
.header__menu li a.active, .header__menu li a:hover {
  color: #1eb5ff;
}
@media (max-width: 991px) {
  .header__actions {
    display: none;
  }
}
.header__toggler {
  background: none;
  border: none;
  display: none;
}
@media (max-width: 991px) {
  .header__toggler {
    display: flex;
  }
}
.header__toggler {
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 0;
}
.header__toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #111827;
  transition: all 0.3s ease-in-out;
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.mobile-menu.is-active {
  visibility: visible;
}
.mobile-menu.is-active .mobile-menu__overlay {
  opacity: 1;
}
.mobile-menu.is-active .mobile-menu__content {
  transform: translateX(0);
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.mobile-menu__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 100%;
  background-color: #ffffff;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1) ease-in-out;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu__close {
  background: none;
  border: none;
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.mobile-menu__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #111827;
}
.mobile-menu__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mobile-menu__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mobile-menu__nav {
  margin-bottom: 40px;
}
.mobile-menu__links {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-menu__links li a {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease-in-out;
}
.mobile-menu__links li a.active, .mobile-menu__links li a:hover {
  color: #1eb5ff;
}
.mobile-menu__footer {
  margin-top: auto;
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-start; /* Shifted to top */
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* Adjusted to start right near the top below the header */
}
@media (max-width: 991px) {
  .hero {
    height: 100vh;
    padding: 60px 0 100px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 55, 104, 0.5) 0%, rgba(10, 55, 104, 0.3) 100%);
}
.hero__content {
  max-width: 923px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.hero__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 56px; /* Increased size slightly for impact */
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(to right, #ffffff, #eff8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 36px;
  }
}
.hero__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .hero__desc {
    font-size: 16px;
  }
}
.hero__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 575px) {
  .hero__btns {
    flex-direction: column;
    align-items: center;
  }
}
.hero__btns .btn-primary {
  padding: 17px 35px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .hero__btns .btn-primary {
    padding: 12px 24px;
    font-size: 16px;
  }
}
.hero__btns .btn-white {
  background: #ffffff;
  color: #0a3768;
  border: 1px solid #e8e8e8;
  padding: 18px 33px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .hero__btns .btn-white {
    padding: 12px 24px;
    font-size: 16px;
  }
}
.hero__btns .btn-white:hover {
  background: rgb(242.25, 242.25, 242.25);
}

/* --- Stats Section --- */
.stats {
  padding: 60px 0;
  position: relative;
}
.stats__inner {
  padding: 68px 40px;
  background: linear-gradient(49.63deg, #d5f1ff 6.08%, #e9f3ff 106.68%);
  border-radius: 4px;
}
@media (max-width: 767px) {
  .stats__inner {
    padding: 40px 20px;
  }
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 991px) {
  .stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }
}
.stats__card {
  background: #ffffff;
  border: 1px solid rgba(163, 232, 255, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.stats__card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}
.stats__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(to right, #008ed4, #0078fa);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 2px 4px 0px rgba(0, 0, 0, 0.05);
}
.stats__icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
.stats__number {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
  color: #0179f7;
}
.stats__label {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #01a2f3;
  text-transform: uppercase;
  letter-spacing: 0.35px;
}

/* --- Services Section --- */
.services {
  padding: 80px 0;
  background-color: #f8fcff;
}
.services__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.services__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #1c2b40;
}
@media (max-width: 767px) {
  .services__title {
    font-size: 28px;
  }
}
.services__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #1c2b40;
}
@media (max-width: 767px) {
  .services__desc {
    font-size: 16px;
  }
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__card {
  background: linear-gradient(to right, #e0f5ff, #d8f1ff);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease-in-out;
}
.services__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.services__card-img {
  height: 192px;
  width: 100%;
  position: relative;
}
.services__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services__card-content {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services__card-title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #1c2b40;
}
.services__card-desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #1c2b40;
}

/* --- Feature Section --- */
.feature {
  background-color: #f8fcff;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .feature {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .feature {
    padding: 60px 0;
  }
}
.feature__grid {
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 64px;
  align-items: stretch; /* Stretch makes columns equal height */
  max-width: 1027px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .feature__grid {
    gap: 40px;
    grid-template-columns: 220px 1fr;
  }
}
@media (max-width: 767px) {
  .feature__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 600px;
  }
}
.feature__image {
  position: relative;
  height: 100%;
}
.feature__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .feature__content {
    gap: 20px;
    text-align: center;
  }
}
.feature__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  color: #1c2b40;
}
@media (max-width: 991px) {
  .feature__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .feature__title {
    font-size: 28px;
  }
}
.feature__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.625;
  color: #1c2b40;
}
@media (max-width: 991px) {
  .feature__desc {
    font-size: 16px;
  }
}
.feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .feature__list {
    margin-top: 8px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}
.feature__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.feature__text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #1c2b40;
}
@media (max-width: 991px) {
  .feature__text {
    font-size: 15px;
  }
}

/* --- How It Works Section --- */
.how-it-works {
  padding: 96px 0;
  background: linear-gradient(67.89deg, #d5f1ff 6.08%, #e9f3ff 106.68%);
}
.how-it-works__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.how-it-works__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #1c2b40;
}
@media (max-width: 767px) {
  .how-it-works__title {
    font-size: 28px;
  }
}
.how-it-works__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: #1c2b40;
}
@media (max-width: 767px) {
  .how-it-works__desc {
    font-size: 16px;
  }
}
.how-it-works__process {
  position: relative;
}
.how-it-works__line {
  position: absolute;
  top: 50%; /* 32px padding + 28px half-icon */
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-color: #0166ba;
  z-index: 1;
}
@media (max-width: 991px) {
  .how-it-works__line {
    display: none;
  }
}
.how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) {
  .how-it-works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .how-it-works__grid {
    grid-template-columns: 1fr;
  }
}
.how-it-works__step {
  background-color: #00a0ea;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 12px;
  padding: 32px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.how-it-works__step.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.how-it-works__step.is-visible:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.how-it-works__step-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.how-it-works__step-icon {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.05);
}
.how-it-works__step-icon img {
  width: 28px;
  height: 28px;
  /* Approximate filter for #00a0ea */
  filter: invert(49%) sepia(85%) saturate(1637%) hue-rotate(167deg) brightness(97%) contrast(101%);
}
.how-it-works__step-num {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #eef2f6;
}
.how-it-works__step-title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 16px;
}
.how-it-works__step-desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}

/* --- CTA Section --- */
.cta {
  position: relative;
  padding: 81px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, #008ed4, #0053ad);
}
.cta__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/cta-bg.png") center/cover;
  opacity: 0.8;
}
.cta .container {
  position: relative;
  z-index: 2;
}
.cta__content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.cta__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: #ffffff;
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 28px;
  }
}
.cta__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .cta__desc {
    font-size: 16px;
  }
}
.cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}
@media (max-width: 575px) {
  .cta__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cta__btns .btn {
  font-size: 18px;
  padding: 18px 32px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .cta__btns .btn {
    padding: 12px 24px;
    font-size: 16px;
  }
}
.cta__btns .btn-gradient {
  background: linear-gradient(90deg, #008ed4 0%, #0053ad 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.cta__btns .btn-gradient:hover {
  box-shadow: 0px 15px 25px -3px rgba(0, 0, 0, 0.2), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.cta__btns .btn-transparent {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.cta__btns .btn-transparent:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* --- Footer Section --- */
.footer {
  background-color: #000000;
  padding: 68px 0 28px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 0 20px;
  }
}
.footer .container {
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer .container {
    padding: 0 40px;
  }
}
@media (max-width: 575px) {
  .footer .container {
    padding: 0 20px;
  }
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 50.5px;
}
@media (max-width: 767px) {
  .footer__main {
    flex-direction: column;
    gap: 50px;
    padding-bottom: 40px;
  }
}
.footer__brand {
  max-width: 300px;
}
@media (max-width: 767px) {
  .footer__brand {
    max-width: 100%;
    text-align: left;
  }
}
.footer__logo {
  margin-bottom: 24px;
}
.footer__logo-wrap {
  position: relative;
  display: inline-block;
}
.footer__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 14px;
  line-height: 22.75px;
  margin: 0;
}
@media (max-width: 1240px) {
  .footer__desc {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .footer__desc br {
    display: none;
  }
}
.footer__links-wrap {
  display: flex;
  gap: 148px;
}
@media (max-width: 1199px) {
  .footer__links-wrap {
    gap: 100px;
  }
}
@media (max-width: 991px) {
  .footer__links-wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .footer__links-wrap {
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .footer__links-wrap {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 140px;
}
@media (max-width: 767px) {
  .footer__column {
    width: auto;
    min-width: 120px;
  }
}
@media (max-width: 575px) {
  .footer__column {
    width: 100%;
    align-items: flex-start;
  }
}
.footer__heading {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 1240px) {
  .footer__heading {
    font-size: 15px;
  }
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 14px;
}
@media (max-width: 1240px) {
  .footer__list li {
    font-size: 13px;
  }
}
.footer__list li {
  line-height: 20px;
}
.footer__list a, .footer__list span {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer__list a:hover {
  color: #ffffff;
}
.footer__icon {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 33px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
.footer__copyright {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 14px;
}
@media (max-width: 1240px) {
  .footer__copyright {
    font-size: 13px;
  }
}
.footer__copyright {
  line-height: 20px;
  margin: 0;
}
.footer__legal {
  display: flex;
  gap: 16px;
}
.footer__legal a {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 14px;
}
@media (max-width: 1240px) {
  .footer__legal a {
    font-size: 13px;
  }
}
.footer__legal a {
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.footer__legal a:hover {
  color: #ffffff;
}

/* --- General Layout Fixes --- */
#outer {
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
}

/* --- About Hero --- */
.about-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px;
}
@media (max-width: 991px) {
  .about-hero {
    height: 100vh;
    padding: 20px 0 100px;
  }
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.about-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 55, 104, 0.5) 0%, rgba(10, 55, 104, 0.3) 100%);
}
.about-hero__content {
  max-width: 923px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}
.about-hero__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 24px;
  background: linear-gradient(to right, #ffffff, #eff8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .about-hero__title {
    font-size: 32px;
  }
}
.about-hero__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 18px;
  line-height: 1.625;
  margin-bottom: 40px;
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .about-hero__desc {
    font-size: 16px;
  }
}
.about-hero__btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 575px) {
  .about-hero__btns {
    flex-direction: column;
    align-items: center;
  }
}
.about-hero__btns .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 16px;
}
.about-hero__btns .btn-primary .btn-icon {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.about-hero__btns .btn-white {
  background: #ffffff;
  color: #0b1120;
  border: 1px solid #e2e8f0;
  padding: 15px 33px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
}
.about-hero__btns .btn-white:hover {
  background: rgb(242.25, 242.25, 242.25);
}

/* --- Who We Are --- */
.who-we-are {
  padding: 120px 0;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .who-we-are {
    padding: 90px 0;
  }
}
@media (max-width: 767px) {
  .who-we-are {
    padding: 60px 0;
  }
}
.who-we-are__grid {
  display: grid;
  grid-template-columns: 608fr 572fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) {
  .who-we-are__grid {
    gap: 48px;
  }
}
@media (max-width: 767px) {
  .who-we-are__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.who-we-are__image-wrapper {
  position: relative;
}
.who-we-are__image {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  aspect-ratio: 608/509;
}
.who-we-are__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(183, 231, 255, 0.2);
  border-radius: 16px;
  pointer-events: none;
}
.who-we-are__main-img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.who-we-are__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #00a0ea;
  padding: 25px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
@media (max-width: 575px) {
  .who-we-are__badge {
    bottom: 20px;
    right: 20px;
    padding: 15px;
  }
}
.who-we-are__badge-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .who-we-are__badge-icon {
    width: 40px;
    height: 40px;
  }
}
.who-we-are__badge-icon img {
  width: 32px;
  height: 32px;
}
@media (max-width: 575px) {
  .who-we-are__badge-icon img {
    width: 24px;
    height: 24px;
  }
}
.who-we-are__badge-text {
  display: flex;
  flex-direction: column;
  color: #ffffff;
}
.who-we-are__badge-number {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
}
@media (max-width: 575px) {
  .who-we-are__badge-number {
    font-size: 24px;
  }
}
.who-we-are__badge-label {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 575px) {
  .who-we-are__badge-label {
    font-size: 12px;
  }
}
.who-we-are__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  
}
@media (max-width: 767px) {
  .who-we-are__content {
    gap: 32px;
  }
}
.who-we-are__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.who-we-are__subtitle {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #0284c7;
  text-transform: uppercase;
}
.who-we-are__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.25;
  color: #0b1120;
  margin: 0;
 
}
@media (max-width: 991px) {
  .who-we-are__title {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .who-we-are__title {
    font-size: 28px;
  }
}
.who-we-are__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 16px;
  line-height: 1.625;
  color: #64748b;
  margin: 0;
}
.who-we-are__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 575px) {
  .who-we-are__features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.who-we-are__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.who-we-are__feature-icon {
  width: 48px;
  height: 48px;
  background-color: #e0f2fe;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.who-we-are__feature-icon img {
  width: 24px;
  height: 24px;
}
.who-we-are__feature-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.who-we-are__feature-title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #0b1120;
  margin: 0;
}
.who-we-are__feature-desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* --- Mission Section --- */
.mission {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  color: #ffffff;
}
@media (max-width: 767px) {
  .mission {
    padding: 80px 0;
  }
}
.mission__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.mission__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mission__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}
.mission__content {
  max-width: 1147px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mission__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .mission__title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .mission__title {
    font-size: 32px;
  }
}
.mission__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 18px;
  line-height: 1.625;
  color: rgba(224, 242, 254, 0.8);
  max-width: 800px;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .mission__desc {
    font-size: 16px;
  }
}
.mission__btns {
  display: flex;
  gap: 16px;
  margin-bottom: 64px;
}
@media (max-width: 575px) {
  .mission__btns {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
}
.mission__stats {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .mission__stats {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .mission__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 575px) {
  .mission__stats {
    gap: 24px;
  }
}
.mission__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mission__stat-number {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #ffffff;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .mission__stat-number {
    font-size: 28px;
  }
}
.mission__stat-label {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .mission__stat-label {
    font-size: 12px;
  }
}

/* --- Contact Hero --- */
.contact-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0px; /* Start right near header */
  background-color: #0b1120;
}
@media (max-width: 991px) {
  .contact-hero {
    height: auto;
    min-height: 100vh;
    padding: 20px 0 100px;
  }
}
.contact-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
}
.contact-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.4;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10, 55, 104, 0.5) 0%, rgba(10, 55, 104, 0.3) 100%);
}
.contact-hero .container {
  position: relative;
  z-index: 3;
}
.contact-hero__content {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 13px;
  border-radius: 33554400px;
  margin-bottom: 24px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.contact-hero__badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}
.contact-hero__badge-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero__badge-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-hero__badge-text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.contact-hero__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 70.4px;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -1.6px;
  filter: drop-shadow(0px 3px 1.5px rgba(0, 0, 0, 0.12));
}
@media (max-width: 991px) {
  .contact-hero__title {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -1px;
  }
}
@media (max-width: 767px) {
  .contact-hero__title {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
}
.contact-hero__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 18px;
  line-height: 29.25px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .contact-hero__desc {
    font-size: 16px;
    line-height: 1.6;
  }
}
.contact-hero__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  width: 100%;
}
@media (max-width: 575px) {
  .contact-hero__btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 48px;
    gap: 12px;
  }
}
.contact-hero__btns .btn-primary {
  background-color: #0284c7;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
  .contact-hero__btns .btn-primary {
    width: 100%;
  }
}
.contact-hero__btns .btn-primary:hover {
  background-color: rgb(1.5940298507, 105.2059701493, 158.6059701493);
  color: #ffffff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.contact-hero__btns .btn-glass {
  padding: 15px 33px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
}
@media (max-width: 575px) {
  .contact-hero__btns .btn-glass {
    width: 100%;
  }
}
.contact-hero__features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .contact-hero__features {
    flex-direction: column;
    gap: 12px;
    max-width: 250px;
    margin: 0 auto;
  }
}
.contact-hero__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 9px 17px;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .contact-hero__feature {
    width: 100%;
    justify-content: center;
  }
}
.contact-hero__feature:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.contact-hero__feature-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero__feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-hero__feature-text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
}

/* --- Contact Main Section --- */
.contact-main {
  background-color: #f8fafc;
  padding: 96px 0;
  position: relative;
}
@media (max-width: 767px) {
  .contact-main {
    padding: 64px 0;
  }
}
.contact-main__header {
  max-width: 672px;
  margin: 0 auto 64px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-main__header {
    margin-bottom: 48px;
  }
}
.contact-main__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 44.44px;
  color: #0b1120;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .contact-main__title {
    font-size: 32px;
    line-height: 1.2;
  }
}
.contact-main__subtitle {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 29.25px;
  color: #64748b;
}
@media (max-width: 767px) {
  .contact-main__subtitle {
    font-size: 16px;
    line-height: 1.5;
  }
}
.contact-main__grid {
  display: flex;
  gap: 48px;
  max-width: 1152px;
  margin: 0 auto;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .contact-main__grid {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
}
.contact-main__left {
  flex: 1;
  min-width: 0;
}
.contact-main__right {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;
  position: sticky;
  top: 110px;
  z-index: 10;
}
@media (max-width: 991px) {
  .contact-main__right {
    width: 100%;
    position: static;
  }
}

/* --- Contact Form Card --- */
.contact-form-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0px 20px 25px -5px rgba(226, 232, 240, 0.5), 0px 8px 10px -6px rgba(226, 232, 240, 0.5);
  position: relative;
}
@media (max-width: 575px) {
  .contact-form-card {
    padding: 24px 16px;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-form .form-row {
  display: flex;
  gap: 24px;
  width: 100%;
}
@media (max-width: 575px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 20px;
  }
}
.contact-form .form-row .form-group {
  flex: 1;
  min-width: 0;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.contact-form .form-label {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #0b1120;
}
.contact-form .form-control {
  height: auto;
  width: 100%;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 13px 17px;
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #0f172a;
  transition: all 0.3s ease-in-out;
}
.contact-form .form-control::-moz-placeholder {
  color: #94a3b8;
}
.contact-form .form-control::placeholder {
  color: #94a3b8;
}
.contact-form .form-control:focus {
  outline: none;
  border-color: #0284c7;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}
.contact-form .form-control--textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form {
  /* Select specific styling */
}
.contact-form .form-select-wrapper {
  position: relative;
  width: 100%;
}
.contact-form .form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form .form-select-arrow {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form .form-select-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-form .btn-submit {
  background-color: #0284c7;
  color: #ffffff;
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 24px;
  border-radius: 8px;
  border: none;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 15px -3px rgba(2, 132, 199, 0.3), 0px 4px 6px -4px rgba(2, 132, 199, 0.3);
}
.contact-form .btn-submit:hover {
  background-color: rgb(1.6955223881, 111.9044776119, 168.7044776119);
  transform: translateY(-1px);
  box-shadow: 0px 12px 20px -3px rgba(2, 132, 199, 0.4);
}
.contact-form .btn-submit:active {
  transform: translateY(0);
}

/* --- Info Cards --- */
.info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 25px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 8px 15px -3px rgba(0, 0, 0, 0.05), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.info-card__icon-wrap {
  background-color: #e0f2fe;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card__icon {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.info-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-card__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0b1120;
  margin: 0;
}
.info-card__text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
  color: #64748b;
  margin: 0;
}
.info-card__link {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #0284c7;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.info-card__link:hover {
  color: rgb(1.2388059701, 81.7611940299, 123.2611940299);
  text-decoration: underline;
}
.info-card__highlight {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #0b1120;
  margin: 0;
}

/* --- Services Hero Section --- */
.services-hero {
  position: relative;
  padding-top: 0px;
  padding-bottom: 50px;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0b1120;
  overflow: hidden;
}
@media (max-width: 991px) {
  .services-hero {
    height: auto;
    min-height: 100vh;
    padding-top: 20px;
    padding-bottom: 80px;
  }
}
.services-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.services-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 32, 0.75);
  z-index: 2;
}
.services-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.services-hero__content {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.services-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 17px;
  border-radius: 9999px;
  margin-bottom: 20px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.services-hero__badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}
.services-hero__badge-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-hero__badge-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.services-hero__badge-text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.services-hero__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 70px;
  margin-bottom: 20px;
  color: #ffffff;
  letter-spacing: -1.6px;
  filter: drop-shadow(0px 3px 1.5px rgba(0, 0, 0, 0.12));
}
@media (max-width: 991px) {
  .services-hero__title {
    font-size: 44px;
    line-height: 52px;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .services-hero__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.5px;
  }
}
.services-hero__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991px) {
  .services-hero__desc {
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .services-hero__desc {
    font-size: 15px;
    line-height: 24px;
  }
}
.services-hero__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
}
@media (max-width: 575px) {
  .services-hero__btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.services-hero__btns .btn-primary {
  background-color: #0284c7;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
  .services-hero__btns .btn-primary {
    width: 100%;
  }
}
.services-hero__btns .btn-primary:hover {
  background-color: rgb(1.5940298507, 105.2059701493, 158.6059701493);
  color: #ffffff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.services-hero__btns .btn-glass {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .services-hero__btns .btn-glass {
    width: 100%;
  }
}
.services-hero__btns .btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

/* --- Workforce & Operational Support Section --- */
.workforce-support {
  background-color: #ffffff;
  padding: 96px 0;
  overflow: visible;
}
@media (max-width: 767px) {
  .workforce-support {
    padding: 60px 0 100px;
  }
}
.workforce-support__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) {
  .workforce-support__grid {
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .workforce-support__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}
.workforce-support__visual {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  .workforce-support__visual {
    max-width: 600px;
    margin: 0 auto;
  }
}
.workforce-support__img-wrapper {
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
}
@media (max-width: 575px) {
  .workforce-support__img-wrapper {
    border-radius: 20px;
  }
}
.workforce-support__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.workforce-support__badge-card {
  position: absolute;
  bottom: -40px;
  right: -48px;
  width: 288px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 25px;
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1), 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
@media (max-width: 1199px) {
  .workforce-support__badge-card {
    right: -20px;
    bottom: -30px;
  }
}
@media (max-width: 991px) {
  .workforce-support__badge-card {
    right: 0;
    bottom: -20px;
    border-radius: 24px;
    padding: 20px;
    width: 260px;
  }
}
@media (max-width: 767px) {
  .workforce-support__badge-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin: 30px auto 0;
    width: 100%;
    max-width: 400px;
    border-radius: 24px;
  }
}
.workforce-support__badge-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.workforce-support__badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workforce-support__badge-icon .svg-guarantee {
  width: 100%;
  height: 100%;
}
.workforce-support__badge-title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #071224;
  margin: 0;
}
.workforce-support__badge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.workforce-support__badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.workforce-support__check-icon {
  width: 20px;
  height: 20px;
  background-color: #f0f7ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.workforce-support__check-icon svg {
  width: 12px;
  height: 12px;
}
.workforce-support__item-text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #1a2a40;
}
.workforce-support__info {
  padding-left: 40px;
}
@media (max-width: 991px) {
  .workforce-support__info {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .workforce-support__info {
    padding-left: 0;
  }
}
.workforce-support__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: #071224;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
@media (max-width: 991px) {
  .workforce-support__title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (max-width: 575px) {
  .workforce-support__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.workforce-support__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #64748b;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .workforce-support__desc {
    font-size: 16px;
    line-height: 26px;
  }
}
.workforce-support__callout {
  background-color: #f0f7ff;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  padding: 25px;
  margin-bottom: 32px;
  box-shadow: 0px 4px 6px -1px rgba(15, 23, 42, 0.02);
}
@media (max-width: 991px) {
  .workforce-support__callout {
    padding: 20px;
    border-radius: 16px;
  }
}
.workforce-support__callout-title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #071224;
  margin-bottom: 8px;
}
@media (max-width: 991px) {
  .workforce-support__callout-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.workforce-support__callout-desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #1a2a40;
  margin: 0;
}
@media (max-width: 991px) {
  .workforce-support__callout-desc {
    font-size: 15px;
    line-height: 22px;
  }
}
.workforce-support__action .btn-pill-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1196db;
  color: #1196db;
  background: transparent;
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 34px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .workforce-support__action .btn-pill-blue {
    width: 100%;
  }
}
.workforce-support__action .btn-pill-blue:hover {
  background-color: #1196db;
  color: #ffffff;
  box-shadow: 0px 10px 15px -3px rgba(17, 150, 219, 0.2);
}

/* --- Services CTA Section --- */
.services-cta {
  background-color: #e5f3ff;
  padding: 128px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .services-cta {
    padding: 80px 0;
  }
}
.services-cta__container {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-cta__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: #1c2b40;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}
@media (max-width: 767px) {
  .services-cta__title {
    font-size: 36px;
    letter-spacing: -0.5px;
  }
}
.services-cta__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #1c2b40;
  margin-bottom: 40px;
  max-width: 700px;
}
@media (max-width: 767px) {
  .services-cta__desc {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
.services-cta__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 64px;
  width: 100%;
}
@media (max-width: 575px) {
  .services-cta__actions {
    flex-direction: column;
    gap: 12px;
  }
}
.services-cta__actions .btn-primary {
  background-color: #0284c7;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 575px) {
  .services-cta__actions .btn-primary {
    width: 100%;
  }
}
.services-cta__actions .btn-primary:hover {
  background-color: rgb(1.5940298507, 105.2059701493, 158.6059701493);
  color: #ffffff;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.services-cta__actions .btn-glass-dark {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(0, 132, 255, 0.1);
  color: #1c2b40;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 33px;
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .services-cta__actions .btn-glass-dark {
    width: 100%;
  }
}
.services-cta__actions .btn-glass-dark:hover {
  background: rgba(0, 132, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  color: #1c2b40;
}
.services-cta__stats {
  width: 100%;
  padding-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .services-cta__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 575px) {
  .services-cta__stats {
    gap: 20px;
  }
}
.services-cta__stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-cta__stat-number {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 38.4px;
  color: #1c2b40;
  margin-bottom: 4px;
}
.services-cta__stat-label {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #1196db;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* --- Careers Hero --- */
.careers-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0px;
  background-color: #071224;
}
@media (max-width: 991px) {
  .careers-hero {
    height: auto;
    min-height: 100vh;
    padding: 20px 0 100px;
  }
}
.careers-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.careers-hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.25;
}
.careers-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(7, 18, 36, 0.85);
  mix-blend-mode: multiply;
  background-image: linear-gradient(180deg, rgba(7, 18, 36, 0.4) 0%, rgba(7, 18, 36, 0.95) 100%);
}
.careers-hero .container {
  position: relative;
  z-index: 3;
}
.careers-hero__content {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
}
.careers-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 7px 17px;
  border-radius: 9999px;
  margin-bottom: 24px;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.careers-hero__badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}
.careers-hero__badge-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.careers-hero__badge-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.careers-hero__badge-text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.careers-hero__title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  margin-bottom: 24px;
  color: #ffffff;
  letter-spacing: -1.6px;
  filter: drop-shadow(0px 3px 1.5px rgba(0, 0, 0, 0.12));
}
@media (max-width: 991px) {
  .careers-hero__title {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -1px;
  }
}
@media (max-width: 767px) {
  .careers-hero__title {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
}
.careers-hero__desc {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 20px;
  line-height: 32.5px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .careers-hero__desc {
    font-size: 16px;
    line-height: 24px;
  }
}
.careers-hero__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  width: 100%;
}
@media (max-width: 575px) {
  .careers-hero__btns {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 48px;
    gap: 12px;
  }
}
.careers-hero__btns .btn-pill-primary {
  background-color: #1196db;
  color: #ffffff;
  padding: 17px 32px;
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 9999px;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 10px rgba(17, 150, 219, 0.4);
}
@media (max-width: 575px) {
  .careers-hero__btns .btn-pill-primary {
    width: 100%;
  }
}
.careers-hero__btns .btn-pill-primary:hover {
  background-color: rgb(14.0610169492, 124.0677966102, 181.1389830508);
  color: #ffffff;
  box-shadow: 0px 8px 15px rgba(17, 150, 219, 0.6);
  transform: translateY(-1px);
}
.careers-hero__btns .btn-pill-glass {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 17px 33px;
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .careers-hero__btns .btn-pill-glass {
    width: 100%;
  }
}
.careers-hero__btns .btn-pill-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transform: translateY(-1px);
}
.careers-hero__features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}
@media (max-width: 575px) {
  .careers-hero__features {
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
    margin: 0 auto;
  }
}
.careers-hero__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(7, 18, 36, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 11px 21px;
  border-radius: 9999px;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .careers-hero__feature {
    width: 100%;
    justify-content: center;
  }
}
.careers-hero__feature:hover {
  background: rgba(7, 18, 36, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.careers-hero__feature-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.careers-hero__feature-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.careers-hero__feature-text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
}

/* --- Candidate Registration Form --- */
.careers-reg {
  background-color: #f8fafc;
  padding: 80px 0 100px;
}
@media (max-width: 767px) {
  .careers-reg {
    padding: 48px 0 64px;
  }
}
.careers-reg__form {
  max-width: 896px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.careers-reg__card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 49px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  box-shadow: 0px 10px 15px -3px rgba(7, 18, 36, 0.05), 0px 4px 6px -4px rgba(7, 18, 36, 0.05);
}
@media (max-width: 767px) {
  .careers-reg__card {
    padding: 24px;
  }
}
.careers-reg__card-header-wrap {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.careers-reg__card-header-wrap .careers-reg__card-header {
  margin-bottom: 0;
}
.careers-reg__card-header-wrap .uploads-subtitle {
  padding-left: 56px;
}
.careers-reg__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.careers-reg__card-header.mb-8 {
  margin-bottom: 24px;
}
.careers-reg__card-icon {
  width: 40px;
  height: 40px;
  background: #f0f7ff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.careers-reg__card-icon img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.careers-reg__card-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.careers-reg__card-title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #071224;
}
@media (max-width: 767px) {
  .careers-reg__card-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.careers-reg__card-subtitle {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #64748b;
}
@media (max-width: 767px) {
  .careers-reg__card-subtitle {
    font-size: 14px;
    line-height: 20px;
  }
}
.careers-reg__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  width: 100%;
  min-width: 0;
}
@media (max-width: 575px) {
  .careers-reg__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.careers-reg__grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 575px) {
  .careers-reg__grid.col-2 {
    grid-template-columns: 1fr;
  }
}
.careers-reg__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  width: 100%;
}
.careers-reg__field.col-span-2 {
  grid-column: span 2;
}
@media (max-width: 575px) {
  .careers-reg__field.col-span-2 {
    grid-column: span 1;
  }
}
.careers-reg__label {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #071224;
}
.careers-reg__input-wrapper {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.careers-reg__input-wrapper.has-icon .careers-reg__input {
  padding-right: 48px;
}
.careers-reg__input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  height: 54px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px 17px;
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: #071224;
  display: block;
  transition: all 0.3s ease-in-out;
}
.careers-reg__input::-moz-placeholder {
  color: #64748b;
}
.careers-reg__input::placeholder {
  color: #64748b;
}
.careers-reg__input:focus {
  outline: none;
  border-color: #1196db;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(17, 150, 219, 0.1);
}
.careers-reg__file-input {
  display: none !important;
}
.careers-reg__input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.5;
  pointer-events: none;
}
.careers-reg__input-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.careers-reg__q-block {
  background: rgba(241, 245, 249, 0.5);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 24px;
}
.careers-reg__q-row {
  display: flex;
  gap: 32px;
}
@media (max-width: 575px) {
  .careers-reg__q-row {
    flex-direction: column;
    gap: 20px;
  }
}
.careers-reg__q-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.careers-reg__radio-group {
  display: flex;
  gap: 24px;
}
.careers-reg__radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.careers-reg__radio-label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.careers-reg__radio-label input[type=radio]:checked ~ .careers-reg__radio-custom {
  border-color: #1196db;
}
.careers-reg__radio-label input[type=radio]:checked ~ .careers-reg__radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}
.careers-reg__radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 9999px;
  position: relative;
  background: #ffffff;
  transition: all 0.2s ease-in-out;
}
.careers-reg__radio-custom::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: #1196db;
  border-radius: 9999px;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease-in-out;
}
.careers-reg__radio-text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #071224;
}
.careers-reg__uploads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  min-width: 0;
}
@media (max-width: 991px) {
  .careers-reg__uploads-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .careers-reg__uploads-grid {
    grid-template-columns: 1fr;
  }
}
.careers-reg__dropzone {
  border: 2px dashed rgba(17, 150, 219, 0.3);
  background: #f0f7ff;
  border-radius: 8px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  min-height: 225px;
  transition: all 0.3s ease-in-out;
}
.careers-reg__dropzone:hover {
  border-color: #1196db;
  background: rgba(17, 150, 219, 0.05);
}
.careers-reg__dropzone.has-file {
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.05);
  border-style: solid;
}
.careers-reg__dropzone-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 12px;
}
.careers-reg__dropzone-icon img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.careers-reg__dropzone-title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #071224;
  margin-bottom: 12px;
}
.careers-reg .btn-dropzone-browse {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #1196db;
  padding: 9px 17px;
  border-radius: 16px;
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 8px;
  cursor: pointer;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
.careers-reg .btn-dropzone-browse:hover {
  background: #1196db;
  color: #ffffff;
  border-color: #1196db;
}
.careers-reg__dropzone-info {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 10px;
  color: rgba(100, 116, 139, 0.8);
  letter-spacing: 0.25px;
  text-transform: uppercase;
}
.careers-reg__file-name {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 12px;
  color: #22c55e;
  font-weight: 600;
  word-break: break-all;
}
.careers-reg__ppe-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e2e8f0;
}
.careers-reg__ppe-img {
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.careers-reg__terms-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .careers-reg__terms-box {
    padding: 20px;
  }
}
.careers-reg__terms-box-title {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #071224;
  margin-bottom: 20px;
}
.careers-reg__terms-list {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.careers-reg__terms-list li {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #64748b;
}
.careers-reg__terms-box-footer {
  border-top: 1px solid #e2e8f0;
  padding-top: 17px;
}
.careers-reg__terms-box-footer h5 {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #071224;
}
.careers-reg__terms-check {
  background: #f0f7ff;
  border: 1px solid rgba(17, 150, 219, 0.3);
  border-radius: 8px;
  padding: 21px;
  display: flex;
  align-items: center;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.careers-reg__checkbox-label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  position: relative;
}
.careers-reg__checkbox-label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.careers-reg__checkbox-label input[type=checkbox]:checked ~ .careers-reg__checkbox-custom {
  border-color: #1196db;
  background: #1196db;
}
.careers-reg__checkbox-label input[type=checkbox]:checked ~ .careers-reg__checkbox-custom::after {
  transform: translate(-50%, -50%) scale(1);
}
.careers-reg__checkbox-custom {
  width: 24px;
  height: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s ease-in-out;
}
.careers-reg__checkbox-custom::after {
  content: "✓";
  position: absolute;
  left: 50%;
  top: 50%;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.2s ease-in-out;
}
.careers-reg__checkbox-text {
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #071224;
}
@media (max-width: 767px) {
  .careers-reg__checkbox-text {
    font-size: 14px;
    line-height: 20px;
  }
}
.careers-reg__submit-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 16px;
}
.careers-reg .btn-register-submit {
  background-color: #0284c7;
  border: 1px solid #e2e8f0;
  color: #ffffff;
  padding: 21px 43px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 320px;
  height: 70px;
  font-family: "Objektiv Mk1", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .careers-reg .btn-register-submit {
    min-width: 100%;
  }
}
.careers-reg .btn-register-submit[disabled] {
  background-color: #cbd5e1;
  border-color: #cbd5e1;
  color: #94a3b8;
  cursor: not-allowed;
  box-shadow: none;
}
.careers-reg .btn-register-submit[disabled] .btn__icon {
  opacity: 0.3;
}
.careers-reg .btn-register-submit:not([disabled]):hover {
  background-color: rgb(1.5940298507, 105.2059701493, 158.6059701493);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0px 10px 15px -3px rgba(2, 132, 199, 0.3);
}
.careers-reg .btn-register-submit .btn__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.careers-reg .btn-register-submit .btn__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.careers-reg__submit-note {
  font-family: "Objektiv Mk1", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #64748b;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.careers-reg__compliance {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.careers-reg__compliance-logo {
  width: 180px;
  height: 80px;
  display: block;
}/*# sourceMappingURL=theme.css.map */