﻿@charset "UTF-8";
main.no-hero {
  padding-top: 90px;
}

main.account-page {
  padding-top: 20px;
}

.white-bg-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 236, 239, 0.5);
}

.navbar {
  padding: 0.75rem 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.navbar-brand {
  margin-right: 3rem;
}
.navbar-brand img {
  height: 60px;
  width: auto;
}
@media (min-width: 768px) {
  .navbar-brand img {
    height: 70px;
  }
}
.navbar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .navbar-header {
    width: auto;
  }
}
.navbar-collapse {
  border: none !important;
}
@media (max-width: 767.98px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem 1.5rem;
    transition: right 250ms ease;
    overflow-y: auto;
    z-index: 1050;
  }
  .navbar-collapse.show {
    right: 0;
  }
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 767.98px) {
  .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.navbar-nav a {
  display: block;
  padding: 0.5rem 1rem;
  color: #343a40 !important;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: lowercase;
  transition: color 150ms ease;
}
.navbar-nav a:hover {
  color: #1a525d !important;
}
@media (max-width: 767.98px) {
  .navbar-nav a {
    padding: 0.75rem 0;
    font-size: 1rem;
    border-bottom: 1px solid #f1f3f5;
  }
}

.nav-button {
  position: relative;
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .nav-button {
    margin-right: 0;
  }
}

.sub-nav-button {
  padding-left: 1rem !important;
}
.sub-nav-button a {
  font-size: 0.875rem !important;
  color: #6c757d !important;
}

#mobile-nav {
  display: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #343a40;
  font-size: 24px;
}
@media (max-width: 767.98px) {
  #mobile-nav {
    display: block;
  }
}
#mobile-nav:hover {
  color: #1a525d;
}

#mobile-nav-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.5rem;
  cursor: pointer;
  color: #6c757d;
  font-size: 24px;
}
@media (max-width: 767.98px) {
  #mobile-nav-close {
    display: block;
  }
}
#mobile-nav-close:hover {
  color: #343a40;
}

@media (min-width: 768px) {
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 150ms ease;
  }
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drop-down-nav-button {
  padding: 0.5rem 1rem;
}
.drop-down-nav-button a {
  font-size: 0.875rem !important;
}
.drop-down-nav-button:hover {
  background: #f8f9fa;
}

footer {
  background-color: #586478;
  color: white;
  padding: 20px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-container a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  display: inline-block;
  padding: 0.25rem 0;
  transition: color 150ms ease;
}
.footer-container a:hover {
  color: #f2c052;
}

.label-footer {
  font-weight: bold;
  color: #f5b76a;
  margin-bottom: 0.75rem;
  display: block;
}

.white-fluid-container {
  background-color: white;
  padding: 2rem 1rem;
}
.white-fluid-container .container {
  max-width: 1400px;
  margin: 0 auto;
}

.grey-fluid-container {
  background-color: #f1f3f5;
}

.orange-fluid-container {
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #f5b76a, #d4903a);
  color: white;
}

.white-bg {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.page-header {
  background: linear-gradient(135deg, #1a525d, #01343d);
  color: white;
  padding: 3rem 1rem;
  margin: 0 calc(-50vw + 50%);
  margin-bottom: 2rem;
  text-align: center;
}
.page-header h1 {
  color: white;
  margin-bottom: 0.5rem;
}
.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}
.breadcrumb-item {
  font-size: 0.875rem;
}
.breadcrumb-item a {
  color: #1a525d;
}
.breadcrumb-item a:hover {
  color: #0d424c;
}
.breadcrumb-item.active {
  color: #6c757d;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #adb5bd;
}

.navbar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent !important;
  padding: 20px 0;
}
.navbar-overlay .nav-link,
.navbar-overlay .navbar-brand {
  color: #fff !important;
}
.navbar-overlay .nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}
.navbar-overlay .navbar-toggler {
  border: none;
  color: #fff;
}
.navbar-overlay .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-overlay .dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  border: none;
}
.navbar-overlay .dropdown-item {
  color: #fff;
}
.navbar-overlay .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.navbar-toggler {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: inherit;
  font-size: 1.5rem;
  line-height: 1;
}
@media (max-width: 991.98px) {
  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler i {
  font-size: 1.75rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    display: none !important;
  }
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-overlay.active .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #012a32 0%, #01343d 100%);
  padding: 2rem 1.5rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.mobile-nav-close:hover {
  color: #fff;
}

.mobile-nav-links {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0 0;
}
.mobile-nav-links li {
  margin-bottom: 0.25rem;
}
.mobile-nav-links a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.mobile-nav-links a i {
  margin-right: 0.5rem;
}
.mobile-nav-links a:hover {
  color: #f5b76a;
  padding-left: 0.5rem;
}

.saving-alert {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}
.saving-alert > div {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.saving-alert #saving-alert {
  background: #2a6d7a;
  color: white;
}
.saving-alert #saved-alert {
  background: #10b981;
  color: white;
}
.saving-alert #save-error-alert {
  background: #ef4444;
  color: white;
}

.hover-lift {
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
  padding-top: 100px;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.65);
}
.hero__content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding-top: 100px;
  color: white;
}
.hero__content .container {
  height: 100%;
}
.hero__content .blockquote {
  color: white;
}
.hero__content .blockquote p {
  font-size: 30px;
  line-height: 40px;
  color: white;
}
.hero__content .blockquote .blockquote-footer {
  color: rgba(255, 255, 255, 0.8);
  position: static;
  height: auto;
  background: none;
  padding: 0;
  width: auto;
}
.hero__content .blockquote .blockquote-footer cite {
  color: rgba(255, 255, 255, 0.8);
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: white;
  opacity: 0.7;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero__scroll:hover {
  opacity: 1;
}
.hero__scroll svg {
  width: 32px;
  height: 32px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@media (max-width: 575px) {
  .hero {
    height: 100vh;
    min-height: auto;
    padding-top: 80px;
  }
  .hero__content {
    padding-top: 50px;
  }
  .hero__content .blockquote p {
    font-size: 20px;
    line-height: 26px;
  }
}
#latest-roles-holder h1 {
  font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
  color: #01343d;
  position: relative;
  padding-bottom: 1rem;
}
#latest-roles-holder h1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #e8a24c;
  border-radius: 0;
}

.latest-job {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  margin-bottom: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.latest-job:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.latest-job-container {
  padding: 1.5rem;
}
.latest-job h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.25rem;
  transition: color 150ms ease;
}
.latest-job h5 {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6c757d;
  margin-bottom: 0.5rem;
}
.latest-job h5 i {
  margin-right: 0.25rem;
  color: #e8a24c;
}
.latest-job p {
  color: #6c757d;
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}
.latest-job:hover h3 {
  color: #01343d;
}

.button-latest-job {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: #343a40;
  color: white;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 150ms ease;
  text-decoration: none;
}
.button-latest-job:hover {
  background: #1a525d;
  color: white;
}

.placed-job {
  background: #e8a24c;
  color: white;
  padding: 1.5rem;
  border-radius: 0;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.placed-job-container {
  margin: 0;
}
.placed-job h3, .placed-job h5, .placed-job p {
  color: white;
}
.placed-job h5 {
  opacity: 0.9;
}
.placed-job:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.assignment-detail__header {
  background: #01343d;
  color: white;
  padding: 3rem 1.5rem;
  margin: 0 calc(-50vw + 50%);
  margin-bottom: 2rem;
  text-align: center;
}
.assignment-detail__title {
  font-size: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}
.assignment-detail__location {
  font-size: 1.125rem;
  opacity: 0.9;
}
.assignment-detail__location i {
  margin-right: 0.5rem;
}
.assignment-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.75rem;
}
.assignment-detail__meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #495057;
}
.assignment-detail__meta-item i {
  color: #2a6d7a;
}
.assignment-detail__meta-item strong {
  color: #01343d;
}
.assignment-detail__content {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.assignment-detail__content h4 {
  color: #0d424c;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.assignment-detail__content h4:first-child {
  margin-top: 0;
}
.assignment-detail__content ul, .assignment-detail__content ol {
  margin-bottom: 1rem;
}
.assignment-detail__content ul li, .assignment-detail__content ol li {
  margin-bottom: 0.5rem;
}
.assignment-detail__sidebar {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  position: sticky;
  top: 100px;
}
.assignment-detail__sidebar .btn {
  width: 100%;
  margin-bottom: 0.5rem;
}

.search-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.search-results__count {
  color: #6c757d;
  font-size: 0.875rem;
}
.search-results__count strong {
  color: #01343d;
}
.search-results__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-results__sort label {
  font-size: 0.875rem;
  color: #495057;
}
.search-results__sort select {
  width: auto;
  padding: 0.5rem 2rem 0.5rem 0.5rem;
  font-size: 0.875rem;
}
.search-results__empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #6c757d;
}
.search-results__empty i {
  font-size: 48px;
  color: #dee2e6;
  margin-bottom: 1rem;
  display: block;
}
.search-results__empty h3 {
  color: #495057;
  margin-bottom: 0.5rem;
}

.search-filters {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  margin-bottom: 1.5rem;
}
.search-filters__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e9ecef;
}
.search-filters__group {
  margin-bottom: 1.5rem;
}
.search-filters__group:last-child {
  margin-bottom: 0;
}
.search-filters__group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.search-filters__checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  cursor: pointer;
}
.search-filters__checkbox input {
  width: auto;
}
.search-filters__checkbox span {
  font-size: 0.875rem;
  color: #495057;
}
.search-filters__checkbox:hover span {
  color: #1a525d;
}

.search-form {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.search-form .form-group {
  margin-bottom: 1rem;
}
.search-form .form-group label {
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.5rem;
  display: block;
}
.search-form .btn-search {
  background: linear-gradient(135deg, #2a6d7a, #0d424c);
  color: white;
  padding: 0.5rem 2rem;
  font-weight: 500;
}
.search-form .btn-search:hover {
  background: linear-gradient(135deg, #4a95a3, #1a525d);
}

.job-type-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.job-type-badge--permanent {
  background: rgba(42, 109, 122, 0.1);
  color: #0d424c;
}
.job-type-badge--contract {
  background: rgba(232, 162, 76, 0.1);
  color: #b87a2e;
}
.job-type-badge--temporary {
  background: rgba(16, 185, 129, 0.1);
  color: rgb(9.9104477612, 114.5895522388, 79.9029850746);
}

.salary-display {
  font-weight: 600;
  color: #d4903a;
}
.salary-display--large {
  font-size: 1.25rem;
}

a.assignment-item {
  display: block;
  color: #495057;
  text-decoration: none;
}
a.assignment-item:link, a.assignment-item:visited, a.assignment-item:hover {
  color: #495057;
  text-decoration: none;
}

.assignment-item-wrapper {
  margin-bottom: 1.5rem;
}

.assignment-item-holder {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  cursor: pointer;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.assignment-item-holder h1 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #01343d;
  margin: 0;
}
.assignment-item-holder p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
.assignment-item-holder:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.assignment-item-footer {
  background-color: white;
  color: #495057;
  margin: 0.5rem 0 -1.5rem 0;
  border-top: 1px solid #e9ecef;
  padding-top: 0.5rem;
  font-size: 0.875rem;
}

.label-assignment {
  font-weight: 600;
  font-size: 1rem;
  color: #343a40;
}

.search-location-holder h1 {
  font-size: 1rem;
  color: #6c757d;
}
.search-location-holder h1 i {
  color: #2a6d7a;
}

.search-footer-type {
  font-size: 0.875rem;
  color: #6c757d;
}

.table-mini-job-list {
  margin-bottom: 0;
}

.search-hero {
  position: relative;
  min-height: 250px;
  background: #012a32;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}
.search-hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  filter: blur(5px);
  -webkit-filter: blur(5px);
  z-index: 0;
  opacity: 0.8;
}
.search-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(20, 20, 20, 0.5));
  z-index: 1;
}
.search-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 2rem 0;
}
.search-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .search-hero__title {
    font-size: 2rem;
  }
}
.search-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.job-detail-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.job-detail-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.job-detail-card__title i {
  color: #f0a830;
}
.job-detail-card__stat {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.job-detail-card__stat i {
  font-size: 1.25rem;
  margin-top: 2px;
}
.job-detail-card__stat > div {
  display: flex;
  flex-direction: column;
}
.job-detail-card__stat-label {
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.job-detail-card__stat-value {
  font-size: 1rem;
  font-weight: 600;
  color: #01343d;
}
.job-detail-card--summary {
  padding: 0;
}
.job-detail-card--summary .job-detail-card__title {
  padding: 1rem 1.5rem;
  margin-bottom: 0;
  border-bottom: none;
}
.job-detail-card__summary-row {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #f1f3f5;
}
.job-detail-card__summary-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #343a40;
  border-right: 1px solid #f1f3f5;
}
.job-detail-card__summary-item:last-child {
  border-right: none;
}
.job-detail-card__summary-item i {
  color: #f0a830;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .job-detail-card__summary-item {
    width: 50%;
    border-right: none;
    border-bottom: 1px solid #f1f3f5;
  }
  .job-detail-card__summary-item:nth-child(odd) {
    border-right: 1px solid #f1f3f5;
  }
  .job-detail-card__summary-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}
.job-detail-card__consultant {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  color: #495057;
  background: #f8f9fa;
}
.job-detail-card__consultant i {
  color: #f0a830;
}
.job-detail-card__consultant strong {
  color: #01343d;
}
.job-detail-card__spec {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f3f5;
}
.job-detail-card__spec:last-child {
  border-bottom: none;
}
.job-detail-card__spec-label {
  font-size: 0.875rem;
  color: #6c757d;
}
.job-detail-card__spec-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
  text-align: right;
}
.job-detail-card__spec-value--highlight {
  color: #d4903a;
  font-weight: 600;
}
.job-detail-card__content {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
}
.job-detail-card__content p {
  margin-bottom: 1rem;
}
.job-detail-card__content p:last-child {
  margin-bottom: 0;
}
.job-detail-card__content ul, .job-detail-card__content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.job-detail-card__content ul li, .job-detail-card__content ol li {
  margin-bottom: 0.25rem;
}

.job-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.job-apply-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  padding: 0;
  overflow: hidden;
}
.job-apply-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: #01343d;
  padding: 1rem;
  background: linear-gradient(135deg, #fff8eb 0%, #fff3db 100%);
  border-bottom: 1px solid rgba(240, 168, 48, 0.2);
}
.job-apply-card__header i {
  font-size: 1.25rem;
  color: #f0a830;
}
.job-apply-card__body {
  padding: 1rem;
}
.job-apply-card__info {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}
.job-apply-card__label {
  color: #6c757d;
}
.job-apply-card__value {
  font-weight: 500;
  color: #343a40;
  text-align: right;
}
.job-apply-card__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f3f5;
}

.job-filled-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  border-left: 4px solid #e8a24c;
  border-radius: 0 0.75rem 0.75rem 0;
}
.job-filled-card__header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: #d4903a;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.job-filled-card__header i {
  font-size: 1.125rem;
}
.job-filled-card__body {
  font-size: 0.875rem;
  color: #495057;
}
.job-filled-card__body p {
  margin-bottom: 0.5rem;
}

.search-content {
  padding: 3rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.search-job-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 250ms ease;
}
.search-job-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: inherit;
}
.search-job-card:hover .search-job-card__cta i {
  transform: translateX(4px);
}
.search-job-card__header {
  margin-bottom: 1rem;
}
.search-job-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 576px) {
  .search-job-card__title-row {
    flex-direction: column;
    gap: 0.25rem;
  }
}
.search-job-card__title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #01343d;
  margin: 0;
}
.search-job-card__ref {
  font-size: 0.75rem;
  color: #adb5bd;
  white-space: nowrap;
}
.search-job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.search-job-card__location, .search-job-card__type {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  color: #6c757d;
}
.search-job-card__location i, .search-job-card__type i {
  color: #e8a24c;
}
.search-job-card__body {
  margin-bottom: 1rem;
}
.search-job-card__description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.7;
}
.search-job-card__description p {
  margin: 0;
}
.search-job-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}
.search-job-card__salary {
  font-size: 0.875rem;
  color: #495057;
}
.search-job-card__salary-value {
  font-weight: 600;
  color: #d4903a;
}
.search-job-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a525d;
}
.search-job-card__cta i {
  transition: transform 150ms ease;
}

.search-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.search-empty i {
  font-size: 64px;
  color: #dee2e6;
  margin-bottom: 1.5rem;
}
.search-empty h3 {
  font-size: 1.5rem;
  color: #343a40;
  margin-bottom: 0.5rem;
}
.search-empty p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.search-pagination {
  margin-top: 2rem;
}
.search-pagination__list {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.5rem;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  color: #495057;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease;
}
.search-pagination__link:hover {
  background: #f0f7f8;
  border-color: #7ab8c2;
  color: #1a525d;
}
.search-pagination__link.active {
  background: #2a6d7a;
  border-color: #2a6d7a;
  color: white;
}

.search-sidebar {
  position: sticky;
  top: 100px;
}
.search-sidebar__widget {
  margin-bottom: 1.5rem;
}
.search-sidebar__widget .widget-card,
.search-sidebar__widget > div {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.applications-widget-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.applications-widget-card__header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: #343a40;
}
.applications-widget-card__header i {
  font-size: 1.125rem;
  color: #f0a830;
}
.applications-widget-card__divider {
  border: none;
  border-top: 1px solid #e9ecef;
  margin: 0.5rem 0 1rem;
}
.applications-widget-card__message {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}
.applications-widget-card__message i {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.applications-widget-card__message a {
  color: inherit;
  text-decoration: underline;
}
.applications-widget-card__message--warning {
  background: #fff8e6;
  color: #92600a;
}
.applications-widget-card__message--warning i {
  color: #d4a017;
}
.applications-widget-card__message--success {
  background: #e8f5e9;
  color: #2e7d32;
}
.applications-widget-card__message--success i {
  color: #43a047;
}
.applications-widget-card__message--info {
  background: #f0f7f8;
  color: #0d424c;
}
.applications-widget-card__message--info i {
  color: #2a6d7a;
}
.applications-widget-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.applications-widget-card__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid #f1f3f5;
}
.applications-widget-card__item:last-child {
  border-bottom: none;
}
.applications-widget-card__job-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
  text-decoration: none;
}
.applications-widget-card__job-title:hover {
  color: #e8a24c;
}
.applications-widget-card__apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: #e8a24c;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 150ms ease;
}
.applications-widget-card__apply-btn:hover {
  background: #d4903a;
}
.applications-widget-card__apply-btn i {
  font-size: 0.75rem;
}

.search-widget-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.search-widget-card__header {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 1rem;
  color: #343a40;
}
.search-widget-card__header i {
  font-size: 1.125rem;
  color: #f0a830;
}
.search-widget-card__divider {
  border: none;
  border-top: 1px solid #e9ecef;
  margin: 0.5rem 0 1rem;
}
.search-widget-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.search-widget-card__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.25rem;
}
.search-widget-card__field .form-control {
  width: 100%;
  padding: 0.25rem 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-size: 0.875rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.search-widget-card__field .form-control:focus {
  outline: none;
  border-color: #2a6d7a;
  box-shadow: 0 0 0 2px rgba(42, 109, 122, 0.15);
}

.account-wrapper {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.account-sidebar {
  background: #01343d;
  color: white;
  padding: 1.5rem;
  min-height: 400px;
}
@media (min-width: 768px) {
  .account-sidebar {
    min-height: auto;
  }
}

.account-content {
  padding: 1.5rem;
  background: white;
}
.account-content input,
.account-content select,
.account-content textarea {
  background-color: #f8f9fa !important;
  border-color: #e9ecef !important;
  border-bottom-color: #adb5bd !important;
  padding: 0.75rem 1rem !important;
  border-radius: 0.5rem;
}
.account-content input:focus,
.account-content select:focus,
.account-content textarea:focus {
  border-color: #2a6d7a !important;
  background-color: white !important;
  box-shadow: 0 0 0 3px rgba(42, 109, 122, 0.1);
}
.account-content select {
  height: auto !important;
  padding: 0.75rem 2rem 0.75rem 1rem !important;
}

.account-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.my-account-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  color: #495057;
  font-size: 0.875rem;
  font-weight: 500;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  transition: all 150ms ease;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
}
.my-account-link i {
  width: 16px;
  text-align: center;
  color: #adb5bd;
  transition: color 150ms ease;
}
.my-account-link:hover {
  background: white;
  border-color: #7ab8c2;
  color: #1a525d;
  text-decoration: none;
}
.my-account-link:hover i {
  color: #2a6d7a;
}
.my-account-link.active {
  background: #01343d;
  color: white;
  border-color: #01343d;
}
.my-account-link.active i {
  color: white;
}

.nav-warning {
  position: absolute;
  right: 0.5rem;
  color: #e8a24c;
  font-size: 0.75rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.dashboard-stat {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 250ms ease;
}
.dashboard-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.dashboard-stat__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}
.dashboard-stat__icon--primary {
  background: rgba(42, 109, 122, 0.1);
  color: #1a525d;
}
.dashboard-stat__icon--accent {
  background: rgba(232, 162, 76, 0.1);
  color: #d4903a;
}
.dashboard-stat__icon--success {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.dashboard-stat__value {
  font-size: 2rem;
  font-weight: 700;
  color: #01343d;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.dashboard-stat__label {
  font-size: 0.875rem;
  color: #6c757d;
}

.candidate-skill,
.candidate-qualification {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  margin: 0 0.5rem 0.5rem 0;
  background: #fff8f0;
  border: 1px dashed #f5b76a;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
  cursor: pointer;
  transition: all 150ms ease;
}
.candidate-skill:hover,
.candidate-qualification:hover {
  background: #fff0e0;
  border-color: #e8a24c;
  border-style: solid;
}
.candidate-skill .remove-skill,
.candidate-qualification .remove-skill {
  color: #adb5bd;
  font-size: 0.75rem;
  margin-left: 0.25rem;
}
.candidate-skill .remove-skill:hover,
.candidate-qualification .remove-skill:hover {
  color: #ef4444;
}

.add-skill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px dashed #dee2e6;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #6c757d;
  cursor: pointer;
  transition: all 150ms ease;
}
.add-skill-btn:hover {
  border-color: #2a6d7a;
  color: #1a525d;
}

.document-upload-area {
  border: 2px dashed #dee2e6;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  background: #f8f9fa;
  transition: all 150ms ease;
  cursor: pointer;
}
.document-upload-area:hover, .document-upload-area.dragover {
  border-color: #2a6d7a;
  background: rgba(42, 109, 122, 0.05);
}
.document-upload-area i {
  font-size: 48px;
  color: #adb5bd;
  margin-bottom: 1rem;
  display: block;
}
.document-upload-area p {
  color: #495057;
  margin-bottom: 0.5rem;
}
.document-upload-area p strong {
  color: #1a525d;
}
.document-upload-area small {
  color: #adb5bd;
}

.document-list__item {
  display: flex;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 150ms ease;
}
.document-list__item:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.document-list__icon {
  width: 40px;
  height: 40px;
  background: #d9eaed;
  color: #1a525d;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.25rem;
}
.document-list__info {
  flex: 1;
}
.document-list__info h6 {
  margin: 0;
  font-weight: 500;
  color: #01343d;
}
.document-list__info small {
  color: #6c757d;
}
.document-list__actions {
  display: flex;
  gap: 0.5rem;
}
.document-list__actions .btn {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.auth-container {
  max-width: 450px;
  margin: 2rem auto;
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.auth-container__header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-container__header img {
  max-width: 200px;
  margin-bottom: 1.5rem;
}
.auth-container__header h2 {
  color: #01343d;
  margin-bottom: 0.5rem;
}
.auth-container__header p {
  color: #6c757d;
}
.auth-container .form-group {
  margin-bottom: 1.25rem;
}
.auth-container .form-group label {
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.5rem;
  display: block;
}
.auth-container .btn-login {
  width: 100%;
  padding: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  background: linear-gradient(135deg, #2a6d7a, #0d424c);
  border: none;
}
.auth-container .btn-login:hover {
  background: linear-gradient(135deg, #4a95a3, #1a525d);
}
.auth-container__footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
}
.auth-container__footer a {
  color: #1a525d;
  font-weight: 500;
}
.auth-container__footer a:hover {
  color: #0d424c;
}

.profile-completion {
  background: #f8f9fa;
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.profile-completion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.profile-completion__header span {
  font-weight: 500;
  color: #343a40;
}
.profile-completion__header strong {
  color: #1a525d;
}
.profile-completion__bar {
  height: 8px;
  background: #e9ecef;
  border-radius: 9999px;
  overflow: hidden;
}
.profile-completion__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2a6d7a, #e8a24c);
  border-radius: 9999px;
  transition: width 500ms ease;
}
.profile-completion__tips {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #495057;
}
.profile-completion__tips ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}
.profile-completion__tips ul li {
  margin-bottom: 0.25rem;
}

.application-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.application-status--pending {
  background: rgba(245, 158, 11, 0.1);
  color: rgb(172.4330708661, 110.9507874016, 7.0669291339);
}
.application-status--reviewed {
  background: rgba(42, 109, 122, 0.1);
  color: #2a6d7a;
}
.application-status--shortlisted {
  background: rgba(42, 109, 122, 0.1);
  color: #0d424c;
}
.application-status--successful {
  background: rgba(16, 185, 129, 0.1);
  color: rgb(9.9104477612, 114.5895522388, 79.9029850746);
}
.application-status--unsuccessful {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.auth-content {
  padding: 3rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.auth-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  padding: 0;
}
.auth-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #1a525d;
  color: white;
  font-weight: 600;
  font-size: 1rem;
}
.auth-card__header i {
  font-size: 1.25rem;
}
.auth-card__header--accent {
  background: linear-gradient(135deg, #fff8eb 0%, #fff3db 100%);
  color: #01343d;
}
.auth-card__header--accent i {
  color: #f0a830;
}
.auth-card__body {
  padding: 1.5rem;
}
.auth-card__body .btn.disabled,
.auth-card__body .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.auth-card__body .btn-accent.disabled,
.auth-card__body .btn-accent:disabled {
  background: #e8a24c;
  color: white;
}
.auth-card__body .btn-primary.disabled,
.auth-card__body .btn-primary:disabled {
  background: #2a6d7a;
  color: white;
}
.auth-card__intro {
  font-size: 0.875rem;
  color: #495057;
  margin-bottom: 1.5rem;
}
.auth-card__footer {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f3f5;
}
.auth-card__footer a {
  font-size: 0.875rem;
  color: #1a525d;
}
.auth-card__footer a:hover {
  color: #0d424c;
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.auth-actions__link {
  font-size: 0.875rem;
  color: #6c757d;
}
.auth-actions__link:hover {
  color: #1a525d;
}

.auth-form-field {
  margin-bottom: 1rem;
}
.auth-form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.25rem;
}
.auth-form-field .form-control {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-size: 0.875rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.auth-form-field .form-control::placeholder {
  color: #adb5bd;
}
.auth-form-field .form-control:focus {
  outline: none;
  border-color: #2a6d7a;
  box-shadow: 0 0 0 2px rgba(42, 109, 122, 0.15);
}
.auth-form-field select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

.auth-field-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

.auth-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 0.375rem;
  color: #ef4444;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.auth-error i {
  flex-shrink: 0;
}

.auth-password-strength {
  display: flex;
  gap: 4px;
  margin-top: 0.25rem;
}
.auth-password-strength > div {
  flex: 1;
  height: 4px;
  background: #e9ecef;
  border-radius: 2px;
  transition: background 150ms ease;
}

.auth-checkboxes {
  margin: 1.5rem 0;
}

.auth-checkbox {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.auth-checkbox:last-child {
  margin-bottom: 0;
}
.auth-checkbox__box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #dee2e6;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 150ms ease;
}
.auth-checkbox__box i {
  font-size: 14px;
  color: white;
}
.auth-checkbox__box.checked, .auth-checkbox__box:has(i:not(.hidden)) {
  background: #2a6d7a;
  border-color: #2a6d7a;
}
.auth-checkbox span {
  font-size: 0.875rem;
  color: #495057;
  line-height: 1.5;
}
.auth-checkbox span a {
  color: #1a525d;
}
.auth-checkbox span a:hover {
  color: #0d424c;
}

.account-section__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 1rem;
}
.account-section__title i {
  color: #2a6d7a;
}

.table-applications {
  width: 100%;
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
}
.table-applications thead {
  background: #f1f3f5;
}
.table-applications thead th {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
}
.table-applications tbody tr {
  border-bottom: 1px solid #f1f3f5;
}
.table-applications tbody tr:last-child {
  border-bottom: none;
}
.table-applications tbody tr:hover {
  background: #f8f9fa;
}
.table-applications tbody td {
  padding: 1rem;
  font-size: 0.875rem;
  color: #343a40;
}

.white-bg {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-primary,
.btn-blue {
  background-color: #e8a24c;
  color: white;
  border: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.btn-primary:hover, .btn-primary:focus,
.btn-blue:hover,
.btn-blue:focus {
  background-color: #d4903a;
  color: white;
}
.btn-primary:active,
.btn-blue:active {
  background-color: #b87a2e;
}

.btn-accent,
.btn-orange {
  background-color: #e8a24c;
  color: white;
  border: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.btn-accent:hover, .btn-accent:focus,
.btn-orange:hover,
.btn-orange:focus {
  background-color: #d4903a;
  color: white;
}
.btn-accent:active,
.btn-orange:active {
  background-color: #b87a2e;
}

.btn-dark {
  background-color: #01343d;
  color: white;
  border: none;
  font-weight: 500;
  transition: background-color 0.2s ease;
}
.btn-dark:hover, .btn-dark:focus {
  background-color: #343a40;
  color: white;
}
.btn-dark:active {
  background-color: #012a32;
}

.btn-white {
  background-color: white;
  color: #343a40;
  border: 1px solid #dee2e6;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-white:hover, .btn-white:focus {
  background-color: #f8f9fa;
  border-color: #adb5bd;
  color: #01343d;
}

.btn-white-border {
  background-color: transparent;
  color: white;
  border: 2px solid white;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-white-border:hover, .btn-white-border:focus {
  background-color: white;
  color: #01343d;
}

.btn-outline-primary {
  background-color: transparent;
  color: #343a40;
  border: 2px solid #343a40;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #01343d;
  border-color: #01343d;
  color: white;
}

.btn-outline-accent {
  background-color: transparent;
  color: #d4903a;
  border: 2px solid #d4903a;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-outline-accent:hover, .btn-outline-accent:focus {
  background-color: #d4903a;
  border-color: #d4903a;
  color: white;
}

.btn-outline-dark {
  background-color: transparent;
  color: #343a40;
  border: 2px solid #343a40;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-outline-dark:hover, .btn-outline-dark:focus {
  background-color: #01343d;
  border-color: #01343d;
  color: white;
}

.btn-secondary,
.btn-teal {
  background-color: #01343d;
  color: white;
  border: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.btn-secondary:hover, .btn-secondary:focus,
.btn-teal:hover,
.btn-teal:focus {
  background-color: #e8a24c;
  color: white;
}
.btn-secondary:active,
.btn-teal:active {
  background-color: #d4903a;
}

.button-apply,
.applications-widget-card__apply-btn {
  background-color: #01343d;
  color: white;
  border: none;
  font-weight: 500;
  transition: all 0.2s ease;
}
.button-apply:hover, .button-apply:focus,
.applications-widget-card__apply-btn:hover,
.applications-widget-card__apply-btn:focus {
  background-color: #e8a24c;
  color: white;
}
.button-apply:active,
.applications-widget-card__apply-btn:active {
  background-color: #d4903a;
}

.btn-xs {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
}

.card {
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.card-header {
  border-radius: 0 !important;
  border-bottom: 1px solid #f1f3f5;
  font-weight: 600;
}

.card-orange .card-header,
.card-accent .card-header {
  background: #e8a24c;
  color: white;
  border-bottom: none;
}

.card-blue .card-header,
.card-primary .card-header {
  background: #2a6d7a;
  color: white;
  border-bottom: none;
}

.card-green .card-header,
.card-success .card-header {
  background: #10b981;
  color: white;
  border-bottom: none;
}

.card-dark .card-header {
  background: #01343d;
  color: white;
  border-bottom: none;
}

.alert-primary {
  background: rgba(42, 109, 122, 0.1);
  border-color: rgba(42, 109, 122, 0.2);
  color: #01343d;
}

.alert-accent {
  background: rgba(232, 162, 76, 0.1);
  border-color: rgba(232, 162, 76, 0.2);
  color: #8c5d22;
}

.alert-xs {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

.badge-primary {
  background: #2a6d7a;
}

.badge-accent {
  background: #e8a24c;
}

.table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #343a40;
  border-bottom-width: 2px;
}
.table td {
  vertical-align: middle;
}
.table-hover tbody tr:hover {
  background: rgba(42, 109, 122, 0.03);
}

.form-control:focus,
.form-select:focus {
  border-color: #2a6d7a;
  box-shadow: 0 0 0 3px rgba(42, 109, 122, 0.1);
}

.form-label {
  font-weight: 500;
  color: #343a40;
}

.required::after {
  content: "*";
  color: #ef4444;
  margin-left: 0.25rem;
}

.modal-header {
  background: #1a525d;
  color: white;
  border-bottom: none;
}
.modal-header .btn-close {
  filter: invert(1);
}

.modal-title {
  font-weight: 600;
}

.insight-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  height: 100%;
}
.insight-card:hover {
  transform: translateY(-5px);
}
.insight-card__image {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: #fff0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.insight-card__image i {
  font-size: 1.25rem;
  color: #d4903a;
}
.insight-card__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #d4903a;
  margin-bottom: 0.5rem;
}
.insight-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.5rem;
}
.insight-card__desc {
  color: #6c757d;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a525d;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
  font-size: 0.875rem;
  color: #d4903a;
}
.insight-card__link i {
  transition: transform 150ms ease;
}
.insight-card__link:hover {
  color: #0d424c;
}
.insight-card__link:hover i {
  transform: translateX(4px);
}
.insight-card__link:hover {
  color: #b87a2e;
}

.page-cta {
  background: #01343d;
  color: #fff;
  padding: 4rem 0;
}
.page-cta__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .page-cta__title {
    text-align: center;
  }
}
.page-cta__subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
@media (max-width: 992px) {
  .page-cta__subtitle {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.page-cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .page-cta__buttons {
    justify-content: center;
  }
}
.page-cta__buttons .btn {
  padding: 1rem 1.5rem;
  font-weight: 600;
}
.page-cta__buttons .btn i {
  margin-right: 0.5rem;
}
.page-cta__buttons .btn-light {
  background: #fff;
  color: #0d424c;
}
.page-cta__buttons .btn-light:hover {
  background: #f1f3f5;
}

.pagination .page-link {
  color: #1a525d;
  border-color: #e9ecef;
}
.pagination .page-link:hover {
  background: #f0f7f8;
  border-color: #2a6d7a;
}
.pagination .page-item.active .page-link {
  background: #1a525d;
  border-color: #1a525d;
}

.nav-tabs {
  border-bottom-color: #e9ecef;
}
.nav-tabs .nav-link {
  color: #495057;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 0.75rem 1.25rem;
  font-weight: 500;
}
.nav-tabs .nav-link:hover {
  color: #1a525d;
  border-color: transparent;
}
.nav-tabs .nav-link.active {
  color: #1a525d;
  border-bottom-color: #1a525d;
  background: transparent;
}

.progress {
  height: 8px;
  border-radius: 9999px;
  background: #e9ecef;
}

.progress-bar {
  background: linear-gradient(90deg, #2a6d7a, #e8a24c);
  border-radius: 9999px;
}

.white {
  color: white;
}

.orange {
  color: #e8a24c;
}

.blue {
  color: #2a6d7a;
}

.text-primary {
  color: #1a525d;
}

.text-accent {
  color: #d4903a;
}

.text-muted {
  color: #6c757d;
}

.text-white {
  color: white !important;
}

.bg-primary {
  background-color: #2a6d7a;
}

.bg-accent {
  background-color: #e8a24c;
}

.bg-light {
  background-color: #f1f3f5;
}

.spacer {
  clear: both;
  height: 1.25rem;
}
.spacer.x2 {
  height: 2.5rem;
}
.spacer.x3 {
  height: 3rem;
}
.spacer.x4 {
  height: 4rem;
}
.spacer.x5 {
  height: 5rem;
}
.spacer.x6 {
  height: 6rem;
}

.small-spacer {
  clear: both;
  height: 0.5rem;
}

.header-lines {
  line-height: 0.5;
  text-align: center;
}
.header-lines span {
  display: inline-block;
  position: relative;
}
.header-lines span::before, .header-lines span::after {
  content: "";
  position: absolute;
  height: 5px;
  border-bottom: 1px solid white;
  border-top: 1px solid white;
  top: 0;
  width: 600px;
}
@media (max-width: 767.98px) {
  .header-lines span::before, .header-lines span::after {
    width: 100px;
  }
}
.header-lines span::before {
  right: 100%;
  margin-right: 1rem;
}
.header-lines span::after {
  left: 100%;
  margin-left: 1rem;
}

.home-panel {
  height: 750px;
  background-image: url(/Images/Panels/home-colour-desk.jpg);
  background-size: cover;
  margin: -100px -15px 0px -15px;
  z-index: 1000 !important;
  padding-top: 200px;
}

.home-panel-button {
  padding: 20px 20px;
  margin-bottom: 50px;
  width: 400px;
  color: #fff;
  font-size: 30px;
}
.home-panel-button > p {
  font-size: 20px !important;
  margin-top: 20px;
}
.home-panel-button.orange {
  display: block;
  background-image: linear-gradient(to left, #d4903a, #d4903a 50%, #d4903a 50%, #d4903a);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: all 0.25s ease-in;
}
.home-panel-button.orange:hover {
  background-position: 0 0;
  cursor: pointer;
}
.home-panel-button.blue {
  display: block;
  background-image: linear-gradient(to left, #012a32, #012a32 50%, #012a32 50%, #012a32);
  background-position: 100% 0;
  background-size: 200% 100%;
  transition: all 0.25s ease-in;
}
.home-panel-button.blue:hover {
  background-position: 0 0;
  cursor: pointer;
}

#home-info-split {
  background-image: linear-gradient(to left, #efefef, #efefef 50%, #01343d 50%, #01343d);
  min-height: 200px;
}

.show-terms:hover {
  cursor: pointer;
  color: #e8a24c;
}

.data-link:hover {
  cursor: pointer;
}

.cursor-pointer {
  cursor: pointer;
}

.print-only {
  display: none !important;
}
@media print {
  .print-only {
    display: block !important;
  }
}

@media print {
  .no-print {
    display: none !important;
  }
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ease-150 {
  transition: all 150ms ease !important;
}

.ease-250 {
  transition: all 250ms ease !important;
}

.ease-500 {
  transition: all 500ms ease !important;
}

.loading {
  position: relative;
  pointer-events: none;
}
.loading::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e9ecef;
  border-top-color: #2a6d7a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.fa-mr::after {
  content: "  ";
  white-space: pre;
}

i.fa[class*=fa-] + span, i.fa[class*=fa-] + a, i.fas[class*=fa-] + span, i.fas[class*=fa-] + a, i.far[class*=fa-] + span, i.far[class*=fa-] + a, i.fab[class*=fa-] + span, i.fab[class*=fa-] + a {
  margin-left: 0.5rem;
}

#button-modal-delete {
  float: left !important;
}

.testimonial {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: #ffe0b8;
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial__text {
  font-style: italic;
  color: #495057;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.testimonial__author {
  font-weight: 600;
  color: #01343d;
}
.testimonial__role {
  font-size: 0.875rem;
  color: #6c757d;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 250ms ease;
}
.client-logo img {
  max-height: 50px;
  width: auto;
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 150ms ease;
}
.social-links a:hover {
  background: #e8a24c;
  transform: translateY(-2px);
}

.navbar-nav {
  float: right;
  margin-left: auto;
}
.navbar-nav .nav-link {
  font-size: 1.125rem !important;
  padding: 0.5rem 1.25rem !important;
}

.nav-white .nav-link,
.nav-white .navbar-brand {
  color: #fff !important;
}
.nav-white .nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}
.nav-white .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}
.nav-white .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.nav-white .dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  border: none;
}
.nav-white .dropdown-item {
  color: #fff;
}
.nav-white .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.navbar-normal {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 236, 239, 0.5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.navbar-normal .nav-link,
.navbar-normal .navbar-brand {
  color: #343a40 !important;
}
.navbar-normal .nav-link:hover {
  color: #1a525d !important;
}

.footer-link {
  transition: color 150ms ease;
}
.footer-link:hover {
  color: white !important;
  text-decoration: none;
}

.hero__content .blockquote {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-left: 4px solid #e8a24c;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
  border-radius: 0 0.75rem 0.75rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.hero__content .blockquote p {
  font-size: 1.75rem !important;
  line-height: 2.25rem !important;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem !important;
}
.hero__content .blockquote .blockquote-footer {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: right;
}
.hero__content .blockquote .blockquote-footer::before {
  content: "— ";
}

.blockquote.standard {
  position: relative;
  background: linear-gradient(135deg, rgba(42, 109, 122, 0.05), rgba(232, 162, 76, 0.05));
  border-left: 5px solid #e8a24c;
  padding: 2.5rem 3rem 2.5rem 3rem;
  margin: 3rem auto;
  max-width: 900px;
  border-radius: 0 1rem 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.blockquote.standard::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: rgba(232, 162, 76, 0.2);
  font-family: Georgia, serif;
}
.blockquote.standard p {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
  font-weight: 400;
  font-style: italic;
  color: #01343d;
  margin-bottom: 0 !important;
  position: relative;
  z-index: 1;
}
.blockquote.standard .blockquote-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(232, 162, 76, 0.2);
  font-size: 1.125rem;
  color: #495057 !important;
  text-align: right;
  position: relative;
  z-index: 2;
  background: transparent;
}
.blockquote.standard .blockquote-footer::before {
  content: "— ";
  color: #e8a24c;
}
.blockquote.standard .blockquote-footer cite {
  font-weight: 600;
  font-style: normal;
  color: #1a525d;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollIndicate {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}
.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
.animate-fade-up.delay-1 {
  animation-delay: 0.2s;
}
.animate-fade-up.delay-2 {
  animation-delay: 0.4s;
}
.animate-fade-up.delay-3 {
  animation-delay: 0.6s;
}
.animate-fade-up.delay-4 {
  animation-delay: 0.8s;
}

.animate-ready {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.section {
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}
.section__header {
  margin-bottom: 3rem;
}
.section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #01343d;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}
.section__intro {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2rem 0;
}
.hero__headline {
  font-size: 3.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .hero__headline {
    font-size: 2.5rem;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .hero__headline {
    font-size: 2rem;
  }
}
.hero__subheadline {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}
@media (max-width: 992px) {
  .hero__subheadline {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .hero__subheadline {
    font-size: 1.125rem;
  }
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media (max-width: 992px) {
  .hero__ctas {
    justify-content: center;
  }
}
.hero__ctas .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}
.hero__ctas .btn-primary {
  background: #e8a24c;
  border-color: #e8a24c;
}
.hero__ctas .btn-primary:hover {
  background: #d4903a;
  border-color: #d4903a;
}
.hero__secondary-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 250ms ease;
}
@media (max-width: 992px) {
  .hero__secondary-link {
    display: block;
    text-align: center;
  }
}
.hero__secondary-link i {
  margin-left: 0.5rem;
}
.hero__secondary-link:hover {
  color: #fff;
}
@media (max-width: 992px) {
  .hero__stats {
    margin-top: 3rem;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  animation: scrollIndicate 2s ease infinite;
}
.hero__scroll svg {
  width: 30px;
  height: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 3px solid #e8a24c;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  text-align: left;
}
.stat:last-child {
  margin-bottom: 0;
}
.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.stat__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.section--grey {
  background: #f8f9fa;
}

.sector-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  border-left: 3px solid transparent;
  border-radius: 0 0.75rem 0.75rem 0;
  height: 100%;
}
.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.sector-card:hover {
  border-left-color: #e8a24c;
}
.sector-card:hover .sector-card__icon i {
  color: #d4903a;
}
.sector-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.sector-card__icon i {
  font-size: 21.6px;
  color: #6c757d;
}
.sector-card__icon i {
  transition: color 250ms ease;
}
.sector-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.5rem;
}
.sector-card__desc {
  color: #6c757d;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

.section--white {
  background: #fff;
}

.service-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  background: #f8f9fa;
  height: 100%;
  cursor: pointer;
  text-align: center;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8a24c;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.service-card__icon i {
  font-size: 31.5px;
  color: white;
}
.service-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 1.5rem;
}
.service-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}
.service-card__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: #495057;
  line-height: 1.5;
}
.service-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a525d;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
  color: #d4903a;
}
.service-card__link i {
  transition: transform 150ms ease;
}
.service-card__link:hover {
  color: #0d424c;
}
.service-card__link:hover i {
  transform: translateX(4px);
}
.service-card__link:hover {
  color: #b87a2e;
}

.credibility {
  background: linear-gradient(135deg, #1a525d 0%, #01343d 100%);
  color: #fff;
}
.credibility .section__title {
  color: #fff;
}
.credibility__content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.logo-showcase {
  margin-bottom: 2rem;
}
.logo-showcase__img {
  border-radius: 0.5rem;
  opacity: 0.9;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
}

.process-timeline {
  background: #f8f9fa;
}
.process-timeline__timeline {
  position: relative;
}
.process-timeline__timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: #dee2e6;
  z-index: 0;
}
@media (max-width: 992px) {
  .process-timeline__timeline::before {
    display: none;
  }
}
.process-timeline__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}
.process-timeline__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(20px);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e8a24c;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .process-timeline__step-number {
    position: static;
    transform: none;
    margin: 0 auto 1rem;
  }
}
.process-timeline__step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #495057;
  margin: 0 auto 1.5rem;
}
.process-timeline__step-icon i {
  font-size: 36px;
  color: #343a40;
}
.process-timeline__step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.5rem;
}
.process-timeline__step-desc {
  color: #6c757d;
  font-size: 0.875rem;
  line-height: 1.6;
}

.testimonials {
  background: #fff;
}
.testimonials__carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.testimonials__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.5rem;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonials__track::-webkit-scrollbar {
  display: none;
}
.testimonials__track > * {
  flex: 0 0 100%;
  max-width: 100%;
}
.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonials__prev, .testimonials__next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #dee2e6;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease;
}
.testimonials__prev i, .testimonials__next i {
  font-size: 1.25rem;
  color: #495057;
}
.testimonials__prev:hover, .testimonials__next:hover {
  border-color: #495057;
  background: #495057;
}
.testimonials__prev:hover i, .testimonials__next:hover i {
  color: #fff;
}

.testimonial-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  min-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
  box-sizing: border-box;
}
.testimonial-card__quote {
  margin-bottom: 1rem;
}
.testimonial-card__quote i {
  font-size: 2rem;
  color: #adb5bd;
}
.testimonial-card__text {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-card__avatar i {
  font-size: 22.5px;
  color: #495057;
}
.testimonial-card__info {
  display: flex;
  flex-direction: column;
}
.testimonial-card__name {
  font-weight: 600;
  color: #01343d;
  font-style: normal;
}
.testimonial-card__title {
  font-size: 0.875rem;
  color: #6c757d;
}
.testimonial-card__divider {
  color: #adb5bd;
  margin: 0 0.25rem;
}
.testimonial-card--compact {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  background: #f8f9fa;
  border-left: 3px solid #adb5bd;
  border-radius: 0;
}
.testimonial-card--compact .testimonial-card__text {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.testimonial-card--compact .testimonial-card__author {
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.testimonial-card--compact .testimonial-card__name {
  font-size: 0.875rem;
}
.testimonial-card--compact .testimonial-card__title {
  font-size: 0.75rem;
}

.testimonials--compact {
  padding: 2rem 0;
  background: #fff;
}
.testimonials--compact .section__title {
  font-size: 1.25rem;
}
.testimonials--compact .testimonials__carousel {
  max-width: none;
}
.testimonials--compact .testimonials__nav {
  margin-top: 1rem;
  justify-content: flex-start;
}
.testimonials--compact .testimonials__prev,
.testimonials--compact .testimonials__next {
  width: 36px;
  height: 36px;
}
.testimonials--compact .testimonials__prev i,
.testimonials--compact .testimonials__next i {
  font-size: 1rem;
}

.role-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  height: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.role-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.role-card__header {
  margin-bottom: 1rem;
}
.role-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin: 0 0 0.5rem 0;
}
.role-card__location {
  color: #6c757d;
  font-size: 0.875rem;
}
.role-card__location i {
  margin-right: 0.25rem;
  color: #e8a24c;
}
.role-card__desc {
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 1rem;
}
.role-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #1a525d;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
  font-size: 0.875rem;
}
.role-card__link i {
  transition: transform 150ms ease;
}
.role-card__link:hover {
  color: #0d424c;
}
.role-card__link:hover i {
  transform: translateX(4px);
}

.cta-banner {
  background: #01343d;
  color: #fff;
  padding: 4rem 0;
}
.cta-banner__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (max-width: 992px) {
  .cta-banner__title {
    text-align: center;
  }
}
.cta-banner__subtitle {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
@media (max-width: 992px) {
  .cta-banner__subtitle {
    text-align: center;
    margin-bottom: 2rem;
  }
}
.cta-banner__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .cta-banner__buttons {
    justify-content: center;
  }
}
.cta-banner__buttons .btn {
  padding: 1rem 1.5rem;
  font-weight: 600;
}
.cta-banner__buttons .btn i {
  margin-right: 0.5rem;
}
.cta-banner__buttons .btn-light {
  background: #fff;
  color: #01343d;
}
.cta-banner__buttons .btn-light:hover {
  background: #f1f3f5;
}

.clients-content {
  padding: 3rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.clients-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.clients-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.clients-card__title i {
  color: #f0a830;
  font-size: 1.5rem;
}
.clients-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.clients-feature {
  display: flex;
  gap: 1rem;
}
.clients-feature__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff0e0;
  border-radius: 0;
}
.clients-feature__icon i {
  font-size: 1.5rem;
  color: #e8a24c;
}
.clients-feature__content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.25rem;
}
.clients-feature__content p {
  font-size: 0.875rem;
  color: #495057;
  margin: 0;
  line-height: 1.5;
}

.clients-service {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  height: 100%;
}
.clients-service h4 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.25rem;
}
.clients-service h4 i {
  color: #f0a830;
}
.clients-service p {
  font-size: 0.875rem;
  color: #495057;
  margin: 0;
  line-height: 1.5;
}

.clients-testimonial {
  position: relative;
  padding: 2rem;
  background: #01343d;
  border-radius: 0;
  color: white;
}
.clients-testimonial > i {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.2);
}
.clients-testimonial blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1rem;
  padding-left: 2rem;
}
.clients-testimonial cite {
  display: block;
  font-size: 0.875rem;
  font-style: normal;
  opacity: 0.8;
  padding-left: 2rem;
}

.clients-form-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  padding: 0;
  position: sticky;
  top: 100px;
}
.clients-form-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: #fff0e0;
  border-bottom: 1px solid rgba(232, 162, 76, 0.2);
  font-weight: 600;
  font-size: 1.125rem;
  color: #01343d;
}
.clients-form-card__header i {
  font-size: 1.5rem;
  color: #e8a24c;
}
.clients-form-card__body {
  padding: 1.5rem;
}
.clients-form-card__intro {
  font-size: 0.875rem;
  color: #495057;
  margin-bottom: 1.5rem;
}
.clients-form-card__note {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 1rem;
  margin-bottom: 0;
}
.clients-form-card__note i {
  color: #adb5bd;
}

.clients-form-field {
  margin-bottom: 1rem;
}
.clients-form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #343a40;
  margin-bottom: 0.25rem;
}
.clients-form-field .form-control {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-size: 0.875rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.clients-form-field .form-control::placeholder {
  color: #adb5bd;
}
.clients-form-field .form-control:focus {
  outline: none;
  border-color: #2a6d7a;
  box-shadow: 0 0 0 2px rgba(42, 109, 122, 0.15);
}
.clients-form-field textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.clients-form-field select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 2rem;
}

.clients-form-success {
  text-align: center;
  padding: 2rem;
}
.clients-form-success i {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 1rem;
}
.clients-form-success h3 {
  font-size: 1.25rem;
  color: #01343d;
  margin-bottom: 0.5rem;
}
.clients-form-success p {
  font-size: 0.875rem;
  color: #495057;
  margin: 0;
}

.contact-content {
  padding: 3rem 0;
  background: #f8f9fa;
  min-height: 60vh;
}

.contact-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.contact-card--highlight {
  border-left: 4px solid #f0a830;
  border-radius: 0 0.75rem 0.75rem 0;
}
.contact-card__title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.contact-card__title i {
  color: #f0a830;
  font-size: 1.25rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-info__item > i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8eb 0%, #fff3db 100%);
  border-radius: 0.5rem;
  font-size: 1.25rem;
  color: #f0a830;
}
.contact-info__item > div {
  display: flex;
  flex-direction: column;
}
.contact-info__label {
  font-size: 0.75rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info__value {
  font-size: 1rem;
  font-weight: 600;
  color: #01343d;
  text-decoration: none;
}
.contact-info__value:hover {
  color: #1a525d;
}

.contact-offices {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-office {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
}
.contact-office h4 {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.25rem;
}
.contact-office h4 i {
  color: #f0a830;
}
.contact-office p {
  font-size: 0.875rem;
  color: #495057;
  margin: 0;
  line-height: 1.5;
}

.contact-cta-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: all 250ms ease;
}
.contact-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.contact-cta-card:hover > i:last-child {
  transform: translateX(4px);
}
.contact-cta-card > i:first-child {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7f8;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: #1a525d;
}
.contact-cta-card > div {
  flex: 1;
}
.contact-cta-card > div h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 2px;
}
.contact-cta-card > div p {
  font-size: 0.875rem;
  color: #6c757d;
  margin: 0;
}
.contact-cta-card > i:last-child {
  color: #adb5bd;
  transition: transform 150ms ease;
}

.contact-map-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  padding: 0;
  overflow: hidden;
  height: 100%;
}
.contact-map-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #fff8eb 0%, #fff3db 100%);
  border-bottom: 1px solid rgba(240, 168, 48, 0.2);
  font-weight: 600;
  font-size: 1rem;
  color: #01343d;
}
.contact-map-card__header i {
  font-size: 1.25rem;
  color: #f0a830;
}
.contact-map-card__body {
  padding: 0;
}
.contact-map-card__body iframe {
  display: block;
  width: 100%;
  min-height: 500px;
  filter: grayscale(20%);
}
.contact-map-card__body .office-map-container {
  border-radius: 0;
}

.about-intro {
  padding: 4rem 0;
  background: white;
}
.about-intro__title {
  font-size: clamp(1.75rem, 1.5rem + 1.5vw, 2.5rem);
  font-weight: 700;
  color: #01343d;
  margin-bottom: 1.5rem;
}
.about-intro__title span {
  color: #1a525d;
}
.about-intro__lead {
  font-size: 1.25rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about-intro p {
  color: #495057;
  line-height: 1.7;
}
.about-intro__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}
@media (max-width: 576px) {
  .about-intro__stats {
    flex-direction: column;
    gap: 1rem;
  }
}
.about-intro__stat {
  display: flex;
  flex-direction: column;
}
.about-intro__stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0a830;
}
.about-intro__stat-label {
  font-size: 0.875rem;
  color: #6c757d;
}
.about-intro__image {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.about-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-section-header {
  margin-bottom: 3rem;
}
.about-section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #01343d;
  margin-bottom: 0.5rem;
}
.about-section-header p {
  font-size: 1.125rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.about-services {
  padding: 4rem 0;
  background: #f8f9fa;
}

.about-service-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  height: 100%;
  text-align: center;
}
.about-service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff8eb 0%, #fff3db 100%);
  border-radius: 0.75rem;
}
.about-service-card__icon i {
  font-size: 2rem;
  color: #f0a830;
}
.about-service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.5rem;
}
.about-service-card p {
  font-size: 0.875rem;
  color: #495057;
  margin-bottom: 1rem;
}
.about-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.about-service-card ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  color: #495057;
}
.about-service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #f0a830;
  border-radius: 50%;
}

.about-roles-list {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}
.about-roles-list p {
  color: #495057;
  margin-bottom: 1rem;
}

.about-roles-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.about-roles-tags span {
  padding: 0.25rem 1rem;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #343a40;
}

.about-process {
  padding: 4rem 0;
  background: white;
}

.about-process-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  position: relative;
  padding-left: 80px;
  height: 100%;
}
.about-process-card__number {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a6d7a 0%, #1a525d 100%);
  color: white;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 50%;
}
.about-process-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.25rem;
}
.about-process-card p {
  font-size: 0.875rem;
  color: #495057;
  margin: 0;
  line-height: 1.6;
}

.about-differentiators {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.about-differentiator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #495057;
}
.about-differentiator i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f7f8;
  border-radius: 50%;
  color: #1a525d;
}
.about-differentiator strong {
  color: #01343d;
}

.about-team {
  padding: 4rem 0;
  background: #f8f9fa;
}

.about-team-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  padding: 0;
  overflow: hidden;
  height: 100%;
}
.about-team-card__image {
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-team-card__image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: var(--team-bg);
  background-size: cover;
  background-position: top center;
  filter: blur(12px) brightness(0.6);
  z-index: 1;
  transform: scale(1.1);
}
.about-team-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.about-team-card__image img {
  position: relative;
  z-index: 3;
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.about-team-card__image--grayscale::before {
  filter: blur(12px) brightness(0.6) grayscale(100%);
}
.about-team-card__image--grayscale img {
  filter: grayscale(100%);
}
.about-team-card__content {
  padding: 1.5rem;
  text-align: center;
}
.about-team-card__content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.25rem;
}
.about-team-card__role {
  display: inline-block;
  font-size: 0.875rem;
  color: #f0a830;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.about-team-card p {
  font-size: 0.875rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: left;
}
.about-team-card__contact {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.about-team-card__contact a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f3f5;
  border-radius: 50%;
  color: #495057;
  transition: all 150ms ease;
}
.about-team-card__contact a:hover {
  background: #2a6d7a;
  color: white;
}

.about-partnership {
  padding: 3rem 0;
  background: white;
}
.about-partnership__card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  border-left: 4px solid #f0a830;
  border-radius: 0 0.75rem 0.75rem 0;
}
.about-partnership__card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #01343d;
  margin-bottom: 0.5rem;
}
.about-partnership__card p {
  font-size: 0.875rem;
  color: #495057;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}
.about-partnership__logo {
  max-width: 120px;
  height: auto;
}

.about-testimonial {
  padding: 4rem 0;
  background: white;
}
.about-testimonial__card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #01343d;
}
.about-testimonial__card > i {
  font-size: 4rem;
  color: #e8a24c;
  opacity: 0.4;
  margin-bottom: 1rem;
}
.about-testimonial__card blockquote {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  color: #343a40;
}
.about-testimonial__card cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  color: #6c757d;
}

.about-cta {
  padding: 3rem 0;
  background: #01343d;
}
.about-cta h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}
.about-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.about-cta__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .about-cta__buttons {
    justify-content: center;
    margin-top: 1.5rem;
  }
}

.about-history {
  padding: 4rem 0;
  background: #f8f9fa;
}
.about-history__content {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
  background: white;
}
.about-history__content p {
  color: #495057;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-history__content p:last-child {
  margin-bottom: 0;
}
