@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap);
@charset "UTF-8";
/* TYPOGRAHPY */
img {
  max-width: 100%;
}

/* GENERAL STYLING */
* {
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif !important;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
  background: rgba(240, 244, 248, 0.3);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.kaci_btn {
  font-size: 14px;
  line-height: 18px;
  padding: 13px 32px;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  background: #e11f28;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.kaci_btn:hover {
  color: #F5F5F5;
  background: #c80000; /* darker red on hover */
  text-decoration: none; /* keep no underline */
  transform: translateY(-1px);
}

.kaci_navbar_logo_menu a {
  margin-bottom: 0;
}

.kaci_navbar_logo_menu a img {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.logo-colored {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.logo-white {
  opacity: 1;
}

.kaci_navbar.scrolled .logo-colored {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.kaci_navbar.scrolled .logo-white {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

/* HEADER AND FOOTER */
.kaci_navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 12px 0;
  overflow-x: clip;
}
.kaci_navbar .kaci_navbar_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.kaci_navbar .kaci_logo {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.kaci_navbar .kaci_logo img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
  display: block;
}
.kaci_navbar .kaci_menu_wrapper {
  display: flex;
  flex: 1;
  justify-content: center;
}
.kaci_navbar .kaci_menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}
.kaci_navbar .kaci_menu li {
  margin: 0;
  position: relative;
}
.kaci_navbar .kaci_menu li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-bottom: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 0;
}
.kaci_navbar .kaci_menu li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #17a2b8;
  transition: width 0.3s ease;
}
.kaci_navbar .kaci_menu li a:hover {
  color: #17a2b8;
}
.kaci_navbar .kaci_menu li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.kaci_navbar .kaci_menu li a:hover .dropdown-arrow svg path {
  stroke: #17a2b8;
}
.kaci_navbar .kaci_menu li a.has-dropdown {
  cursor: pointer;
}
.kaci_navbar .kaci_menu li a .dropdown-arrow {
  display: inline-block;
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-left: 4px;
}
.kaci_navbar .kaci_menu li a .dropdown-arrow svg path {
  transition: stroke 0.2s ease;
}
.kaci_navbar .kaci_menu li .submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 12px;
  list-style: none;
  margin: 0;
  padding: 16px 0;
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}
.kaci_navbar .kaci_menu li .submenu li {
  margin: 0;
  padding: 0;
}
.kaci_navbar .kaci_menu li .submenu li a {
  display: block;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.kaci_navbar .kaci_menu li .submenu li a::after {
  display: none;
}
.kaci_navbar .kaci_menu li .submenu li a:hover {
  background: #f0f8ff;
  color: #17a2b8;
  padding-left: 24px;
}
.kaci_navbar .kaci_menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.kaci_navbar .kaci_menu li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: auto;
}
.kaci_navbar .kaci_menu li:hover::after {
  pointer-events: auto;
}
.kaci_navbar .kaci_menu li.active .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.kaci_navbar .kaci_menu li.active > a.has-dropdown .dropdown-arrow {
  transform: rotate(180deg);
}
.kaci_navbar .kaci_cta_button {
  background: linear-gradient(102.12deg, #00D9D9 0%, #00A8A8 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 217, 217, 0.2);
  border: none;
  cursor: pointer;
}
.kaci_navbar .kaci_cta_button:hover {
  background: linear-gradient(102.12deg, #138496 0%, #138496 100%);
  transform: translateY(-4px);
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 217, 217, 0.35);
}
.kaci_navbar .kaci_hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .kaci_navbar {
    padding: 10px 0;
    height: 60px;
    display: flex;
    align-items: center;
    max-width: 100vw;
    left: 0;
    right: 0;
    border-radius: 0;
    box-sizing: border-box;
  }
  .kaci_navbar .kaci_navbar_wrapper {
    gap: 10px;
  }
  .kaci_navbar .kaci_logo {
    width: 100px;
  }
  .kaci_navbar .kaci_logo img {
    width: 100%;
  }
  .kaci_navbar .kaci_menu_wrapper {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
  }
  .kaci_navbar .kaci_cta_button {
    display: none;
  }
  .kaci_navbar .kaci_menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 60px);
    background: linear-gradient(180deg, #0F1823 0%, #1A2836 50%, #006699 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
    overflow: hidden;
    overflow-y: auto;
    padding: 16px 24px 24px;
    gap: 0;
    z-index: 999;
  }
  .kaci_navbar .kaci_menu li {
    margin: 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .kaci_navbar .kaci_menu li a {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
  }
  .kaci_navbar .kaci_menu li a::after {
    display: none;
  }
  .kaci_navbar .kaci_menu li a .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
  }
  .kaci_navbar .kaci_menu li a .dropdown-arrow svg path {
    stroke: white;
  }
  .kaci_navbar .kaci_menu li:first-child {
    margin-top: 8px;
  }
  .kaci_navbar .kaci_menu li:last-child {
    border-bottom: none;
  }
  .kaci_navbar .kaci_menu li .submenu {
    position: static;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: none;
    margin: 0 0 12px 0;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    flex-direction: column;
  }
  .kaci_navbar .kaci_menu li .submenu li {
    margin: 0;
    border-bottom: none;
  }
  .kaci_navbar .kaci_menu li .submenu li a {
    padding: 12px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }
  .kaci_navbar .kaci_menu li .submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00D9D9;
  }
  .kaci_navbar .kaci_menu li .submenu.active {
    display: flex;
  }
  .kaci_navbar .kaci_menu.open, .kaci_navbar .kaci_menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .kaci_navbar .kaci_menu.closing {
    opacity: 0;
    visibility: visible;
    transform: translateY(-10px);
    pointer-events: none;
  }
  .kaci_navbar .kaci_menu li.submenu-open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .kaci_navbar .kaci_hamburger {
    display: block;
    cursor: pointer;
  }
  .kaci_navbar .kaci_hamburger span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #0F1823;
    margin-bottom: 5px;
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .kaci_navbar .kaci_hamburger span:last-child {
    margin-bottom: 0;
  }
}
#nav-icon4 {
  position: relative;
  width: 28px;
  height: 20px;
  cursor: pointer;
}
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #0F1823;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}
#nav-icon4 span:nth-child(1) {
  top: 0;
  transform-origin: center center;
}
#nav-icon4 span:nth-child(2) {
  top: 9px;
  transform-origin: center center;
}
#nav-icon4 span:nth-child(3) {
  top: 18px;
  transform-origin: center center;
}
#nav-icon4.open span {
  background: #0F1823;
}
#nav-icon4.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
  width: 100%;
}
#nav-icon4.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
#nav-icon4.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
  width: 100%;
}

.kaci_footer {
  background: #1a2332;
  color: #fff;
  padding: 60px 0 30px;
}
.kaci_footer .footer-content {
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .kaci_footer .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}
.kaci_footer .footer-section h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-transform: capitalize;
}
.kaci_footer .footer-section.footer-left {
  flex: 0 0 25%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .kaci_footer .footer-section.footer-left {
    flex: 0 0 100%;
  }
}
.kaci_footer .footer-section.footer-info {
  flex: 0 0 25%;
}
@media (max-width: 768px) {
  .kaci_footer .footer-section.footer-info {
    flex: 0 0 100%;
  }
}
.kaci_footer .footer-section.footer-info h3 {
  margin-bottom: 20px;
}
.kaci_footer .footer-logo img {
  width: 120px;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.kaci_footer .footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #b0b8c1;
  margin-bottom: 10px;
}
.kaci_footer .footer-social-media {
  display: flex;
  gap: 15px;
  align-items: center;
}
.kaci_footer .footer-social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.kaci_footer .footer-social-media a i {
  font-size: 16px;
}
.kaci_footer .footer-social-media a:hover {
  background: #17a2b8;
  transform: translateY(-3px);
  color: #fff;
}
.kaci_footer .footer-sections {
  flex: 0 0 50%;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .kaci_footer .footer-sections {
    flex: 0 0 100%;
    flex-direction: column;
  }
}
.kaci_footer .footer-sections .footer-section {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .kaci_footer .footer-sections .footer-section {
    flex: 0 0 100%;
  }
}
.kaci_footer .footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kaci_footer .footer-menu li {
  margin-bottom: 12px;
}
.kaci_footer .footer-menu li a {
  color: #b0b8c1;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
.kaci_footer .footer-menu li a:hover {
  color: #17a2b8;
  padding-left: 5px;
}
.kaci_footer .footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kaci_footer .footer-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}
.kaci_footer .footer-info-list li .footer-info-icon {
  min-width: 24px;
  color: #17a2b8;
  font-weight: 600;
}
.kaci_footer .footer-info-list li .footer-info-text {
  color: #b0b8c1;
  line-height: 1.4;
}
.kaci_footer .footer-info-list li:last-child {
  margin-bottom: 0;
}
.kaci_footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .kaci_footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
.kaci_footer .footer-bottom p {
  font-size: 13px;
  color: #b0b8c1;
  margin: 0;
}
.kaci_footer .footer-bottom .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
}
@media (max-width: 768px) {
  .kaci_footer .footer-bottom .footer-links {
    justify-content: center;
    width: 100%;
  }
}
.kaci_footer .footer-bottom .footer-links li a {
  color: #b0b8c1;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}
.kaci_footer .footer-bottom .footer-links li a:hover {
  color: #17a2b8;
}

body {
  background: #fff;
}

/* COMPONENTS */
.hero-section {
  background: linear-gradient(122.01deg, #0F1823 0%, #1A2332 40%, #006699 100%);
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  height: 100vh;
}
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    padding: 108px 0 72px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 96px 0 64px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 80px 0 48px;
    text-align: center;
  }
}
.hero-section .hero-tagline {
  display: inline-block;
  background: rgba(0, 217, 217, 0.1);
  border: 1px solid rgba(0, 217, 217, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00D9D9;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .hero-section .hero-tagline {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }
}
.hero-section .banner-title {
  max-width: 576px;
  font-size: 60px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: 0;
}
.hero-section .banner-title span {
  color: #00bcd4;
}
@media (max-height: 770px) {
  .hero-section .banner-title {
    font-size: 56px;
    line-height: 52px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-section .banner-title {
    font-size: 36px;
    line-height: 42px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-section .banner-title {
    font-size: 36px;
    line-height: 45px;
    margin: 0 auto;
  }
}
.hero-section .description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .hero-section .description {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
}
@media (max-width: 576px) {
  .hero-section .description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}
.hero-section .button-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .hero-section .button-group {
    gap: 12px;
    margin-bottom: 36px;
  }
}
@media (max-width: 576px) {
  .hero-section .button-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
}
.hero-section .button-group .btn {
  padding: 12px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .hero-section .button-group .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
  }
}
.hero-section .button-group .btn.btn-primary {
  background: linear-gradient(103.88deg, #00D9D9 0%, #00A8A8 100%);
  color: #ffffff;
  border: none;
}
.hero-section .button-group .btn.btn-primary:hover {
  background: linear-gradient(90deg, #0097a7 0%, #006064 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}
.hero-section .button-group .btn.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.hero-section .button-group .btn.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.hero-section .button-group .btn.btn-secondary, .hero-section .button-group .btn.btn-outline-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-section .button-group .btn.btn-secondary:hover, .hero-section .button-group .btn.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.hero-section .stats-row {
  border-top: 0.8px solid rgba(255, 255, 255, 0.1);
  padding-top: 48px;
}
@media (max-width: 768px) {
  .hero-section .stats-row {
    padding-top: 36px;
  }
}
@media (max-width: 576px) {
  .hero-section .stats-row {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .hero-section .stats-row .col-4 {
    text-align: center;
  }
}
.hero-section .stats-row .stats-number {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 36px;
}
@media (max-width: 576px) {
  .hero-section .stats-row .stats-number {
    font-size: 24px;
    line-height: 32px;
  }
}
.hero-section .stats-row .stats-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  line-height: 20px;
}
@media (max-width: 576px) {
  .hero-section .stats-row .stats-text {
    font-size: 11px;
    line-height: 16px;
  }
}
.hero-section .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .hero-section .image-container {
    display: none;
  }
}
.hero-section .image-container .img-fluid {
  border-top: 1px solid var(--color-white-10, rgba(255, 255, 255, 0.1));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(26, 35, 50, 0.8);
  border-radius: 12px;
  padding: 32px 43px;
}
@media (max-width: 991px) {
  .hero-section .image-container .img-fluid {
    padding: 24px 24px;
  }
}
.hero-section .image-container .img-fluid img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.services-section {
  padding: 96px 0;
  text-align: center;
  background: rgba(240, 244, 248, 0.3);
  /* Card */
  /* Features */
  /* Button */
}
@media (max-width: 768px) {
  .services-section {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .services-section {
    padding: 48px 0;
  }
}
.services-section .tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgb(0, 136, 204);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .services-section .tagline {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.services-section .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .services-section .section-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .services-section .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
}
.services-section .section-title .gradient-text {
  background: linear-gradient(99.18deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.services-section .section-description {
  font-size: 18px;
  color: rgb(72, 101, 129);
  max-width: 620px;
  margin: 0 auto 64px;
  line-height: 28px;
}
@media (max-width: 768px) {
  .services-section .section-description {
    font-size: 16px;
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .services-section .section-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
  }
}
.services-section .service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  transition: all 0.35s ease;
  border: 1px solid #f1f5f9;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .services-section .service-card {
    padding: 24px;
    border-radius: 14px;
  }
}
.services-section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.services-section .service-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
@media (max-width: 576px) {
  .services-section .service-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 16px;
  }
}
.services-section .service-card .card-title {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .services-section .service-card .card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.services-section .service-card .card-description {
  font-size: 16px;
  color: rgb(72, 101, 129);
  line-height: 24px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .services-section .service-card .card-description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
  }
}
.services-section .card-features {
  margin-bottom: 34px;
}
@media (max-width: 576px) {
  .services-section .card-features {
    margin-bottom: 20px;
  }
}
.services-section .card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .services-section .card-features li {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.services-section .card-features li .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section .card-features li .feature-text {
  color: rgb(0, 102, 153);
  font-weight: 500;
}
.services-section .card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: rgb(0, 136, 204);
  text-decoration: none;
  margin-top: auto;
}
@media (max-width: 576px) {
  .services-section .card-button {
    font-size: 14px;
  }
}
.services-section .card-button:hover {
  gap: 10px;
  text-decoration: none;
  color: #006699;
}
.services-section .card-button:hover svg path {
  stroke: #006699;
}
.services-section .card-button svg {
  transition: transform 0.25s ease;
}
.services-section .card-button svg path {
  transition: stroke 0.25s ease;
}
.services-section .card-button:hover svg {
  transform: translateX(3px);
}

.partners-section {
  padding: 96px 0;
  background: #f8f9fb;
  text-align: center;
}
@media (max-width: 768px) {
  .partners-section {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .partners-section {
    padding: 48px 0;
  }
}
.partners-section .tagline {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: rgb(0, 136, 204);
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .partners-section .tagline {
    font-size: 12px;
  }
}
.partners-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .partners-section .section-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.partners-section .description {
  max-width: 600px;
  margin: 0 auto 64px;
  color: #6c757d;
}
@media (max-width: 768px) {
  .partners-section .description {
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .partners-section .description {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.partners-section .partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 24px;
}
@media (max-width: 576px) {
  .partners-section .partners-grid {
    row-gap: 16px;
  }
}
.partners-section .partner-logo {
  width: 176px;
  height: 96px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 576px) {
  .partners-section .partner-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
  }
}

.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
  color: #fff;
}
@media (max-width: 768px) {
  .about-section {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 48px 0;
  }
}
.about-section .tagline {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: rgb(0, 217, 217);
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .about-section .tagline {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.about-section .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .about-section .section-title {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {
  .about-section .section-title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 576px) {
  .about-section .section-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.about-section .section-title .gradient-text {
  background: linear-gradient(101.69deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-section .description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .about-section .description {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 576px) {
  .about-section .description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .about-section .feature-cards {
    gap: 16px;
  }
}
.about-section .feature-card {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}
@media (max-width: 576px) {
  .about-section .feature-card {
    padding: 20px;
  }
}
.about-section .feature-card .feature-icon {
  color: #00d4c8;
  margin-bottom: 18px;
}
@media (max-width: 576px) {
  .about-section .feature-card .feature-icon {
    margin-bottom: 12px;
  }
}
.about-section .feature-card .feature-icon svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 576px) {
  .about-section .feature-card .feature-icon svg {
    width: 24px;
    height: 24px;
  }
}
.about-section .feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
@media (max-width: 576px) {
  .about-section .feature-card h3 {
    font-size: 16px;
  }
}
.about-section .feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 20px;
}
@media (max-width: 576px) {
  .about-section .feature-card p {
    font-size: 13px;
  }
}
.about-section .right-content {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .about-section .right-content {
    justify-content: center;
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .about-section .right-content {
    margin-top: 32px;
  }
}
.about-section .info-items {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  max-width: 576px;
}
@media (max-width: 576px) {
  .about-section .info-items {
    padding: 24px;
    max-width: 100%;
  }
}
.about-section .info-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .about-section .info-card {
    gap: 12px;
    margin-bottom: 20px;
  }
}
.about-section .info-card:last-child {
  margin-bottom: 0;
}
.about-section .info-card .info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .about-section .info-card .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}
.about-section .info-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 576px) {
  .about-section .info-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.about-section .info-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin: 0;
  line-height: 24px;
}
@media (max-width: 576px) {
  .about-section .info-card p {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .about-section .left-content,
  .about-section .right-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-section .feature-cards {
    margin-left: -8px;
    margin-right: -8px;
  }
  .about-section .feature-cards > [class*=col-] {
    padding-left: 8px;
    padding-right: 8px;
  }
  .about-section .info-items {
    max-width: 100%;
  }
}

.contact-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #00A8A8 0%, #006699 100%);
  text-align: center;
}
.contact-section .cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-section .cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.contact-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-section .cta-buttons .btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-section .cta-buttons .btn.primary {
  background: #fff;
  color: #0066a6;
  border: 2px solid #fff;
}
.contact-section .cta-buttons .btn.primary:hover {
  background: #f1efef;
}
.contact-section .cta-buttons .btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.contact-section .cta-buttons .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 64px 24px;
  }
  .contact-section .cta-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .contact-section .cta-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .contact-section .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .contact-section .cta-buttons .btn {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .contact-section {
    padding: 52px 16px;
  }
  .contact-section .cta-title {
    font-size: 26px;
    line-height: 1.3;
  }
}
.site-main {
  margin-bottom: 0;
}

.error-404 {
  height: calc(100vh - 103px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}
.error-404 .error_layout {
  width: 100%;
}
.error-404 .error_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
.error-404 .error_info .error_404 h1 {
  font-size: 120px;
  font-weight: 800;
  color: black;
  text-align: right;
  margin: 0;
}
.error-404 .error_info .error_message h2 {
  font-size: 34px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}
.error-404 .error_info .error_message p {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

@media (max-width: 1200px) {
  .error-404 .error_info .error_404 h1 {
    font-size: 100px;
  }
  .error-404 .error_info .error_message h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .error-404 .error_info {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .error-404 .error_info .error_404 h1 {
    text-align: center;
    font-size: 48px;
  }
  .error-404 .error_info .error_message h2 {
    text-align: center !important;
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .error-404 .error_info {
    flex-direction: column;
    text-align: center;
  }
  .error-404 .error_info .error_404 h1 {
    text-align: center;
    font-size: 42px;
  }
  .error-404 .error_info .error_message h2 {
    text-align: center !important;
    font-size: 28px;
  }
}
.services-hero {
  background: linear-gradient(106.61deg, #0F1823 0%, #1A2332 40%, #006699 100%);
  padding: 130px 0 80px;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .services-hero {
    padding: 100px 0 60px;
  }
}
@media (max-width: 576px) {
  .services-hero {
    padding: 80px 0 48px;
  }
}
.services-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-hero .services-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgb(0, 217, 217);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .services-hero .services-tagline {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.services-hero .services-title {
  padding: 0 91px;
  margin-bottom: 16px;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 60px;
}
.services-hero .services-title .gradient-text {
  background: linear-gradient(102.27deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .services-hero .services-title {
    padding: 0;
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 576px) {
  .services-hero .services-title {
    padding: 0;
    font-size: 36px !important;
    line-height: 40px;
    margin-bottom: 0;
  }
}
.services-hero .services-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 672px;
  margin: 0 auto 48px;
  line-height: 28px;
}
@media (max-width: 768px) {
  .services-hero .services-description {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .services-hero .services-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
  }
}
.services-hero .services-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .services-hero .services-pills {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.services-hero .service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 576px) {
  .services-hero .service-pill {
    padding: 10px 18px;
  }
}
.services-hero .service-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.services-hero .service-pill .pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00D9D9;
}
.services-hero .service-pill .pill-icon svg {
  width: 16px;
  height: 16px;
}
.services-hero .service-pill .pill-text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

.relocation-services {
  padding: 96px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .relocation-services {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .relocation-services {
    padding: 48px 0;
  }
}
.relocation-services > .container > .row {
  gap: 64px;
}
@media (max-width: 768px) {
  .relocation-services > .container > .row {
    gap: 48px;
  }
}
@media (min-width: 992px) {
  .relocation-services .col-lg-6 {
    flex: 0 0 calc(50% - 32px);
    max-width: calc(50% - 32px);
  }
}

.relocation-services__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.relocation-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.relocation-services__tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgb(0, 136, 204);
}

.relocation-services__title {
  font-size: 36px;
  font-weight: 700;
  color: black;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .relocation-services__title {
    font-size: 28px;
  }
}

.relocation-services__title .gradient-text {
  display: block;
  background: linear-gradient(102.27deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.relocation-services__description {
  font-size: 18px;
  color: rgb(72, 101, 129);
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .relocation-services__description {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.relocation-services__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .relocation-services__buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.relocation-services__buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 576px) {
  .relocation-services__buttons .btn {
    width: 100%;
  }
}

.relocation-services__buttons .btn-primary {
  background: linear-gradient(105.4deg, #00D9D9 0%, #00A8A8 100%);
  color: #ffffff !important;
  border: none !important;
}

.relocation-services__buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
  color: #ffffff !important;
}

.relocation-services__buttons .btn-outline {
  background: #ffffff !important;
  color: #0F1823 !important;
  border: 1px solid #D1D5DB !important;
}

.relocation-services__buttons .btn-outline:hover {
  border-color: #0088CC !important;
  color: #0088CC !important;
  background: #ffffff !important;
}

.relocation-card {
  background: #ffffff;
  padding: 24px;
}

.relocation-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.relocation-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #0F1823;
  margin-bottom: 8px;
}

.relocation-card__description {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

.relocation-process__wrapper {
  background-color: rgb(241, 245, 248);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-top: 80px;
}
@media (max-width: 768px) {
  .relocation-process__wrapper {
    padding: 32px 24px;
  }
}

.relocation-process__title {
  font-size: 24px;
  font-weight: 700;
  color: #0F1823;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .relocation-process__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.relocation-process__steps {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 991px) {
  .relocation-process__steps {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .relocation-process__steps {
    flex-direction: column;
    align-items: center;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
}
@media (max-width: 991px) {
  .process-step {
    flex: 0 0 calc(50% - 16px);
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .process-step {
    flex: 0 0 100%;
    max-width: 250px;
  }
}

.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgb(0, 168, 168);
  border-radius: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.process-step__title {
  font-size: 16px;
  font-weight: 600;
  color: #0F1823;
  margin-bottom: 8px;
}

.process-step__description {
  font-size: 14px;
  color: rgb(72, 101, 129);
  line-height: 1.5;
}

.property-services {
  padding: 96px 0;
  background-color: rgba(240, 244, 248, 0.5);
}

.property-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.property-card-inner {
  position: relative;
  padding: 32px;
  padding-right: 120px;
  min-height: 180px;
  pointer-events: none;
}

.apps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.app-content {
  flex: 1;
}

.app-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px 0;
}

.app-text {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.property-blob {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  background: rgba(0, 217, 217, 0.2);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

.property-stats {
  padding: 24px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: auto;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #1a365d;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
}

.property-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 48px;
}

.property-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.property-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.property-tagline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: rgb(0, 136, 204);
}

.property-title h2, .property-title p {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a365d;
  margin: 0;
}
.property-title span {
  background: linear-gradient(90deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.property-description {
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  margin: 0;
  max-width: 576px;
}

.property-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.property-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #1a365d;
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg {
  width: 20px;
  height: 20px;
}

.property-button {
  padding-top: 8px;
}
.property-button .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(106.47deg, #00D9D9 0%, #00A8A8 100%);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-button .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}

@media (max-width: 991px) {
  .property-content {
    padding-left: 0;
    padding-top: 48px;
  }
  .property-title h2, .property-title p {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .property-services {
    padding: 64px 0;
  }
  .property-card-inner {
    padding-right: 32px;
  }
  .property-blob {
    display: none;
  }
  .property-title h2, .property-title p {
    font-size: 26px;
  }
}
.digital-services {
  padding: 96px 0;
  background-color: #fff;
}

.digital-header {
  margin-bottom: 64px;
}

.digital-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.digital-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.digital-tagline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: rgb(0, 136, 204);
}

.digital-title h2, .digital-title p {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a365d;
  margin-bottom: 24px;
}
.digital-title span {
  background: linear-gradient(108.07deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.digital-description {
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  margin: 0 auto;
  max-width: 672px;
}

.digital-services-row {
  margin-bottom: 80px;
}

.service-card {
  position: relative;
  padding: 32px;
  height: 100%;
  background: rgba(240, 244, 248, 0.3);
  border-radius: 16px;
}

.service-card--popular {
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #00D9D9 0%, #0088CC 100%);
  border-radius: 20px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 24px;
}

.service-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 16px;
}

.service-card-description {
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin-bottom: 24px;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1a365d;
}

.feature-check {
  width: 14px;
  height: 14px;
  min-width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b8b8;
  margin-top: 2px;
}
.feature-check svg {
  width: 14px;
  height: 14px;
}

.digital-packages {
  background: rgb(26, 35, 50);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  padding: 48px 48px 80px 48px;
}

.packages-header {
  margin-bottom: 16px;
}

.packages-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
}

.packages-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.packages-row .row {
  --bs-gutter-x: 24px;
}

.package-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--color-white-10, rgba(255, 255, 255, 0.1));
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.package-card--featured {
  background: linear-gradient(135deg, #00A8A8 0%, #006699 100%);
  border: 1px solid var(--color-cyan-43, rgb(0, 217, 217));
}
.package-card--featured .package-name,
.package-card--featured .price,
.package-card--featured .package-description {
  color: #fff;
}
.package-card--featured .price-suffix {
  color: rgba(255, 255, 255, 0.7);
}
.package-card--featured .package-features li {
  color: rgba(255, 255, 255, 0.9);
}
.package-card--featured .feature-check {
  color: #00D9D9;
}

.most-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1a365d;
  background: #fff;
  border-radius: 20px;
  white-space: nowrap;
}

.package-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #00D9D9;
  margin-bottom: 8px;
}

.package-price {
  margin-bottom: 12px;
}

.price {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
}

.price-suffix {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.package-description {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-check {
  color: #00D9D9;
}

.package-button {
  margin-top: auto;
}
.package-button .btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.package-button .btn-outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.package-button .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.package-button .btn-light {
  color: #1a365d;
  background: #fff;
  border: 2px solid #fff;
}
.package-button .btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .digital-services-row .col-lg-4 {
    margin-bottom: 32px;
  }
  .digital-packages {
    padding: 40px 24px;
  }
  .packages-row .col-lg-4 {
    margin-bottom: 24px;
  }
  .digital-title h2, .digital-title p {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .digital-services {
    padding: 64px 0;
  }
  .digital-title h2, .digital-title p {
    font-size: 28px;
  }
  .packages-title {
    font-size: 26px;
  }
  .price {
    font-size: 28px;
  }
}
.investment-services {
  padding: 96px 0;
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F9FF 100%);
}
.investment-services > .container > .row {
  gap: 48px;
}
@media (min-width: 992px) {
  .investment-services .col-lg-6 {
    flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}
@media (max-width: 991px) {
  .investment-services {
    padding: 64px 0;
  }
}

.investment-content {
  padding-right: 24px;
}
@media (max-width: 991px) {
  .investment-content {
    padding-right: 0;
  }
}

.investment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.investment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.investment-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #0088CC;
}

.investment-title {
  font-size: 36px;
  font-weight: 700;
  color: #0F1823;
  line-height: 1.2;
  margin-bottom: 24px;
}
.investment-title .gradient-text {
  display: block;
  background: linear-gradient(102.27deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 576px) {
  .investment-title {
    font-size: 28px;
  }
}

.investment-description {
  font-size: 18px;
  color: #486581;
  line-height: 1.6;
  margin-bottom: 32px;
}

.investment-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.investment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.investment-item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.investment-item-content {
  flex: 1;
}

.investment-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #0F1823;
  margin: 0 0 4px 0;
}

.investment-item-text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

.investment-button .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(105.4deg, #00D9D9 0%, #00A8A8 100%);
  color: #ffffff;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.investment-button .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.investment-stats-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.investment-stats-title {
  font-size: 20px;
  font-weight: 700;
  color: #0F1823;
  margin: 0 0 32px 0;
}

.investment-stats-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.investment-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px;
  background: rgb(230, 255, 255);
  border-radius: 12px;
}

.investment-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: rgb(0, 136, 204);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.investment-stat-info {
  flex: 1;
}

.investment-stat-label {
  font-size: 14px;
  color: rgb(0, 102, 153);
  line-height: 1.4;
}

.investment-stat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.investment-stat-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #0088CC;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: 4px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .investment-items {
    margin-bottom: 24px;
  }
  .investment-stats-card {
    margin-top: 32px;
  }
}
@media (max-width: 576px) {
  .investment-stats-card {
    padding: 24px;
  }
  .investment-stat-value {
    font-size: 24px;
    min-width: 60px;
  }
}
@media (max-width: 1024px) {
  .references-hero {
    padding: 40px 0 24px 0;
  }
  .references-hero .references-title {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .references-hero .references-description {
    font-size: 1rem;
  }
  .references-hero .references-stats {
    flex-direction: column;
    gap: 16px;
  }
  .references-hero .references-stats .reference-stat {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .references-hero {
    padding: 24px 0 12px 0;
  }
  .references-hero .references-title {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .references-hero .references-description {
    font-size: 0.95rem;
  }
}
.references-hero {
  background: linear-gradient(109.24deg, #0F1823 0%, #1A2332 40%, #006699 100%);
  color: #fff;
  padding: 130px 0 0 0;
  text-align: center;
}
.references-hero .references-tagline {
  background: rgba(255, 255, 255, 0.08);
  color: #b3e5fc;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}
.references-hero .references-title {
  max-width: 896px;
  font-size: 60px;
  line-height: 64px;
  font-weight: 700;
  margin: 0 auto 24px;
}
.references-hero .references-title .gradient-text {
  background: linear-gradient(102.43deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.references-hero .references-description {
  font-size: 18px;
  color: #cfd8dc;
  margin-bottom: 48px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}
.references-hero .references-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
}
.references-hero .references-stats .reference-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 32px;
  min-width: 120px;
}
.references-hero .references-stats .reference-stat .stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}
.references-hero .references-stats .reference-stat .stat-label {
  font-size: 0.95rem;
  color: #b0bec5;
}
.references-hero .references-filters {
  padding: 48px 0;
  background: #fbfcfd;
  border-bottom: 1px solid var(--color-azure-89, rgb(217, 226, 236));
  text-align: center;
  gap: 16px;
  display: flex;
  justify-content: center;
}
.references-hero .references-filters .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgb(188, 204, 220);
  background: white;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 1rem;
  color: rgb(26, 35, 50);
  font-weight: 500;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .references-projects .reference-project-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  .references-projects .reference-project-card .project-card-left, .references-projects .reference-project-card .project-card-right {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .references-projects .reference-project-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  .references-projects .reference-project-card .project-card-left, .references-projects .reference-project-card .project-card-right {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 1024px) {
  .references-projects {
    padding: 24px 0 40px 0;
  }
  .references-projects .references-section-title {
    font-size: 1.5rem;
  }
  .references-projects .reference-project-card {
    flex-direction: column;
    min-height: unset;
  }
  .references-projects .reference-project-card .project-card-left, .references-projects .reference-project-card .project-card-right {
    padding: 24px 16px;
    border-radius: 16px !important;
  }
  .references-projects .reference-project-card .project-card-right {
    border-radius: 0 0 16px 16px;
  }
}
@media (max-width: 600px) {
  .references-projects {
    padding: 12px 0 24px 0;
  }
  .references-projects .references-section-title {
    font-size: 1.1rem;
  }
  .references-projects .reference-project-card {
    flex-direction: column;
  }
  .references-projects .reference-project-card .project-card-left, .references-projects .reference-project-card .project-card-right {
    padding: 16px 8px;
  }
}
.references-projects {
  background: #fafbfc;
  padding: 40px 0 80px 0;
}
.references-projects .references-section-tagline {
  color: rgb(0, 136, 204);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.references-projects .references-section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 48px 0;
  text-align: center;
}
.references-projects .references-project-list {
  max-width: 1200px;
  margin: 0 auto;
}
.references-projects .reference-project-card {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  align-items: stretch;
  margin-bottom: 32px;
  min-height: 320px;
}
.references-projects .reference-project-card .project-card-left,
.references-projects .reference-project-card .project-card-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 18px;
  min-width: 0;
}
.references-projects .reference-project-card .project-card-left {
  background: linear-gradient(135deg, #00A8A8 0%, #006699 100%);
  border-radius: 16px 0 0 16px;
}
.references-projects .reference-project-card .project-card-left .project-logo {
  margin-bottom: 12px;
  width: 128px;
  height: 128px;
}
.references-projects .reference-project-card .project-card-left .project-logo img, .references-projects .reference-project-card .project-card-left .project-logo svg {
  width: 100%;
  height: 100%;
}
.references-projects .reference-project-card .project-card-left .project-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.references-projects .reference-project-card .project-card-left .project-subtitle {
  font-size: 0.95rem;
  color: #b3e5fc;
}
.references-projects .reference-project-card .project-card-right {
  background: #fff;
  border-radius: 0 16px 16px 0;
  align-items: flex-start;
}
.references-projects .reference-project-card .project-card-right .project-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.references-projects .reference-project-card .project-card-right .project-tags .project-tag {
  background: #e0f7fa;
  color: rgb(0, 102, 153);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
}
.references-projects .reference-project-card .project-card-right .project-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.references-projects .reference-project-card .project-card-right .project-description {
  color: #607d8b;
  font-size: 16px;
  margin-bottom: 24px;
}
.references-projects .reference-project-card .project-card-right .project-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.references-projects .reference-project-card .project-card-right .project-stats .project-stat {
  text-align: center;
  background: #f5f7fa;
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 90px;
}
.references-projects .reference-project-card .project-card-right .project-stats .project-stat .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: rgb(0, 136, 204);
  display: block;
}
.references-projects .reference-project-card .project-card-right .project-stats .project-stat .stat-label {
  font-size: 14px;
  color: rgb(72, 101, 129);
}
.references-projects .reference-project-card .project-card-right .case-study-link {
  background: linear-gradient(101.55deg, #00D9D9 0%, #00A8A8 100%);
  color: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(30, 198, 230, 0.08);
}
.references-projects .reference-project-card .project-card-right .case-study-link:hover {
  background: linear-gradient(101.55deg, #00D9D9 0%, #00A8A8 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px 0 rgba(30, 198, 230, 0.25);
}

@media (max-width: 600px) {
  .references-projects .project-stats {
    gap: 8px !important;
    flex-wrap: wrap !important;
  }
  .references-projects .project-stats .project-stat {
    min-width: 70px !important;
    padding: 8px 6px !important;
  }
  .references-projects .project-stats .project-stat .stat-value {
    font-size: 14px !important;
  }
  .references-projects .project-stats .project-stat .stat-label {
    font-size: 10px !important;
  }
}
.portfolio-section {
  background: #f0f4f8;
  padding: 96px 0;
}
.portfolio-section .header-title {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .portfolio-section .header-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .portfolio-section .header-title {
    margin-bottom: 32px;
  }
}
.portfolio-section .header-title .portfolio-section-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  color: rgb(0, 136, 204);
  margin-bottom: 16px;
}
.portfolio-section .header-title .portfolio-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.portfolio-section .header-title .portfolio-section-description {
  color: rgb(72, 101, 129);
  font-size: 18px;
  text-align: center;
}
.portfolio-section .portfolio-card {
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(30, 60, 114, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.portfolio-section .portfolio-card .portfolio-card-top {
  padding: 28px;
  border-radius: 20px 20px 0 0;
  min-height: 140px;
  background: inherit;
  color: #fff;
  position: relative;
}
.portfolio-section .portfolio-card .portfolio-card-top .portfolio-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #e0f7fa;
  font-size: 13px;
  font-weight: 500;
  border-radius: 12px;
  padding: 4px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 72px;
}
.portfolio-section .portfolio-card .portfolio-card-top .portfolio-tag .portfolio-tag-icon {
  display: inline-block;
  vertical-align: middle;
}
.portfolio-section .portfolio-card .portfolio-card-top .portfolio-tag .portfolio-tag-icon svg {
  width: 16px;
  height: 16px;
}
.portfolio-section .portfolio-card .portfolio-card-top h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}
.portfolio-section .portfolio-card .portfolio-card-top .portfolio-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  font-weight: 400;
}
.portfolio-section .portfolio-card .portfolio-card-bottom {
  background: #fff;
  padding: 24px;
  border-radius: 0 0 20px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-description {
  color: rgb(72, 101, 129);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .stats-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 18px;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .stats-row .stat-item {
  margin-right: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .stats-row .stat-item .font-weight-bold {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: rgb(0, 136, 204);
}
.portfolio-section .portfolio-card .portfolio-card-bottom .stats-row .stat-item .text-muted {
  font-size: 12px;
  color: rgb(98, 125, 152);
  line-height: 1.1;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .btn-link {
  color: #0088cc;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 0;
  transition: color 0.2s;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .btn-link:hover {
  color: #005f99;
  text-decoration: underline;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .btn-link span {
  font-size: 1.1em;
  margin-left: 4px;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-btn {
  color: rgb(0, 136, 204);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: inline-block;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-btn:hover {
  color: #1565c0;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-btn span {
  transition: margin-left 0.2s;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-btn:hover span {
  margin-left: 10px;
}

.testimonials-section {
  background: #fff;
  padding: 96px 0;
}
.testimonials-section .header-titles {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-section .header-titles .testimonials-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1ec6e6;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
}
.testimonials-section .header-titles .testimonials-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.testimonials-section .testimonial-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonials-section .testimonial-card .testimonial-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.testimonials-section .testimonial-card .testimonial-stars .star {
  margin-right: 2px;
}
.testimonials-section .testimonial-card .testimonial-quote {
  color: #3a4a5d;
  font-size: 1.08rem;
  margin-bottom: 18px;
  font-style: italic;
  min-height: 80px;
  text-align: left;
}
.testimonials-section .testimonial-card .testimonial-client {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background: #2196f3;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-meta {
  text-align: left;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-meta .testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-meta .testimonial-role {
  font-size: 0.95rem;
  color: #7b8ca3;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-meta .testimonial-company {
  color: #2196f3;
}

@media (max-width: 991px) {
  .testimonial-card {
    margin-bottom: 32px;
  }
}
.approach-section {
  background: rgb(26, 35, 50);
  color: #fff;
  padding: 96px 0;
  position: relative;
}
.approach-section .headings {
  text-align: center;
  margin-bottom: 64px;
}
.approach-section .section-tagline {
  color: rgb(0, 217, 217);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.approach-section .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.approach-section .section-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}
.approach-section .approach-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.approach-section .approach-step {
  border-radius: 12px;
  padding: 32px 16px;
  width: 100%;
  max-width: 280px;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
  position: relative;
  min-height: 250px;
  margin-bottom: 32px;
}
.approach-section .approach-step:hover {
  box-shadow: 0 4px 24px rgba(61, 225, 201, 0.12);
  border-color: #3de1c9;
}
.approach-section .step-number {
  background: #3de1c9;
  color: #232b33;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 18px auto;
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(61, 225, 201, 0.15);
  border: 3px solid #232b33;
}
.approach-section .step-icon {
  margin-bottom: 24px;
  margin-top: 12px;
}
.approach-section .step-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}
.approach-section .step-description {
  color: #b0b8c1;
  font-size: 14px;
  text-align: center;
  max-width: 214px;
}

.approach-section::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #3de1c9 0%, rgba(35, 43, 51, 0.1) 80%);
  opacity: 0.18;
  filter: blur(30px);
  z-index: 1;
}

.consultation {
  padding-top: 80px;
  background: linear-gradient(135deg, #F0F4F8 0%, #FFFFFF 50%, rgba(230, 255, 255, 0.3) 100%);
}
.consultation .section-header {
  text-align: center;
  max-width: 896px;
  margin: 0 auto 64px;
}
.consultation .section-header .tagline {
  background: rgba(0, 168, 168, 0.1);
  color: rgb(0, 102, 153);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 24px;
  text-align: center;
  gap: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.consultation .section-header .section-title {
  font-size: 60px;
  line-height: 1.02;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.consultation .section-header .section-title .gradient-text {
  background: linear-gradient(95.92deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.consultation .section-header .description {
  color: #6b7f86;
  text-align: center;
  font-size: 20px;
  padding: 0 25px;
}
.consultation .consultation-channels .channels-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.consultation .consultation-channels .channels-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.consultation .consultation-channels .channels-list .contact-channel {
  background: #ffffff;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.consultation .consultation-channels .channels-list .contact-channel .contact-channel-label {
  color: rgb(98, 125, 152);
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 4px;
}
.consultation .consultation-channels .channels-list .contact-channel .contact-channel-value {
  font-size: 18px;
  color: rgb(26, 35, 50);
  font-weight: 700;
}
.consultation .consultation-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(10, 40, 50, 0.04);
}
.consultation .consultation-form-card .form-header {
  margin-bottom: 18px;
}
.consultation .consultation-form-card .form-header .form-title {
  font-size: 28px;
  font-weight: 800;
  color: #102027;
  margin-bottom: 6px;
}
.consultation .consultation-form-card .form-header .form-subtitle {
  color: #6b7f86;
  font-size: 15px;
  margin-bottom: 18px;
}
.consultation .consultation-form-card .services-row {
  margin-top: 16px;
}
.consultation .consultation-form-card .services-row .services-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 150, 160, 0.08);
  padding: 14px 16px;
  cursor: pointer;
  transition: box-shadow 0.12s ease, transform 0.08s ease, border-color 0.12s ease;
  background-clip: padding-box;
}
.consultation .consultation-form-card .services-row .services-card:is(button) {
  background: transparent;
}
.consultation .consultation-form-card .services-row .services-card .service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 217, 217, 0.08);
  color: #00aeb0;
  flex: 0 0 auto;
}
.consultation .consultation-form-card .services-row .services-card .service-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.consultation .consultation-form-card .services-row .services-card .service-card-content .service-title {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: #102027;
  line-height: 1.1;
}
.consultation .consultation-form-card .services-row .services-card .service-card-content .service-desc {
  display: block;
  color: #7b8c92;
  font-size: 13px;
  margin-top: 0;
  line-height: 1.2;
}
.consultation .consultation-form-card .services-row .services-card:hover {
  box-shadow: 0 8px 22px rgba(10, 40, 50, 0.06);
  transform: translateY(-2px);
}
.consultation .consultation-form-card .services-row .services-card.active {
  border-color: rgba(0, 217, 217, 0.36);
  background: linear-gradient(90deg, #f7ffff, #ffffff);
}
.consultation .consultation-form-card .consultation-form-wrapper {
  margin-top: 18px;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 input[type=text],
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 input[type=email],
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(14, 37, 46, 0.06);
  background: #fbfeff;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 .two-cols {
  display: flex;
  gap: 16px;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 .two-cols .form-control {
  flex: 1;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 textarea {
  min-height: 120px;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 .wpcf7-submit {
  background: linear-gradient(90deg, #00d9d9, #00b3b3);
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
.consultation .consultation-footer-badges {
  margin-top: 80px;
  margin-bottom: 40px;
  gap: 16px;
  text-align: center;
  justify-content: center;
}
.consultation .consultation-footer-badges .footer-badge {
  background: rgb(240, 244, 248);
  padding: 24px 16px;
  max-width: 292px;
  border: 1px solid var(--color-azure-89, rgb(217, 226, 236));
  border-radius: 16px;
}
.consultation .consultation-footer-badges .footer-badge .badge-label {
  margin-top: 10px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.consultation .consultation-footer-badges .footer-badge .badge-desc {
  color: #6b7f86;
  font-size: 12px;
}

.faq-section {
  text-align: center;
  background: #f7f9fb;
  padding: 96px 0;
}
.faq-section .section-title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
.faq-section .faq-subtitle {
  color: rgb(72, 101, 129);
  font-size: 16px;
  margin-bottom: 64px;
  font-weight: 400;
}
.faq-section .faq-accordion {
  text-align: left;
}
.faq-section .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s;
  border: 1px solid #f0f4f8;
}
.faq-section .faq-item.active {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-color: #e0e8ef;
}
.faq-section .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  outline: none;
  color: #222b45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.faq-section .faq-item.active .faq-answer {
  border-top: 2px solid #e0e8ef;
  margin-left: 24px;
  margin-right: 24px;
  padding-top: 16px;
}
.faq-section .faq-question:hover {
  background: #f5f7fa;
}
.faq-section .faq-answer {
  display: none;
  padding: 0 0 24px 0;
  color: #4a5a6a;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-section .faq-answer .faq-answer p {
  margin-bottom: 0 !important;
}
.faq-section .faq-item.active .faq-answer {
  display: block;
}
.faq-section .faq-arrow {
  display: inline-flex;
  margin-left: 12px;
  transition: transform 0.3s;
}
.faq-section .faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.hero-layout {
  position: relative;
  padding: 90px 0 100px;
  background: linear-gradient(105.38deg, #0F1823 0%, #1A2332 40%, #006699 100%);
  color: #ffffff;
}
.hero-layout:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* subtle vignette + teal highlight to the right */
  background: var(--color-azure-4010, rgba(0, 136, 204, 0.1));
}
.hero-layout .content {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}
.hero-layout .content .services-tagline {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  letter-spacing: 0;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}
.hero-layout .content .services-title {
  font-size: 60px;
  line-height: 1.02;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  /* Allow editors to wrap highlighted words with a span.accent */
}
.hero-layout .content .services-title .gradient-text {
  background: linear-gradient(100.47deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-layout .content .services-description {
  padding: 0 20px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 900px) {
  .hero-layout {
    padding: 60px 0 80px;
  }
  .hero-layout .services-title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .hero-layout {
    padding: 40px 0 60px;
  }
  .hero-layout .services-tagline {
    font-size: 12px;
    padding: 6px 12px;
  }
  .hero-layout .services-title {
    font-size: 28px;
  }
  .hero-layout .services-description {
    font-size: 15px;
    padding: 0 12px;
  }
}

/* Partners cards layout styles */
.partners-section {
  padding: 96px 0;
  text-align: center;
}
.partners-section .section-tagline {
  display: block;
  font-size: 14px;
  color: rgb(0, 136, 204);
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}
.partners-section .section-title {
  font-size: 48px;
  margin: 0 auto 16px;
  max-width: 900px;
  font-weight: 700;
  line-height: 1;
}
.partners-section .section-title .gradient-text {
  background: linear-gradient(100.47deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.partners-section .section-description {
  color: #6b7a89;
  max-width: 672px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 28px;
}
.partners-section .partner-column {
  /* columns should stretch to same height and use internal padding like Bootstrap */
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  max-width: 430px; /* narrower cards to match design */
  width: 100%;
}
.partners-section .partner-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* ensure card fills column height so both cards match */
}
.partners-section .card-figure {
  height: 460px;
  width: 100%;
  max-width: 430px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.partners-section .partner-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.partners-section .partner-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00c7d9, #008dbc);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) inset;
}
.partners-section .partner-initials {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
}
.partners-section .card-body {
  padding: 32px 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.partners-section .partner-name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.partners-section .partner-title {
  color: #00a8c7;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}
.partners-section .partner-description {
  color: #6b7a89;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
}
.partners-section .partner-tags {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.partners-section .tag-pill {
  background: #eaf9fb;
  color: #00a8c7;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 12px;
}
@media (max-width: 900px) {
  .partners-section .card-figure {
    height: 260px;
  }
  .partners-section .partner-column {
    max-width: 420px;
  }
}
@media (max-width: 520px) {
  .partners-section .partner-column {
    max-width: 100%;
  }
  .partners-section .card-figure {
    height: 220px;
  }
}

/* Expert Teams layout: rely on .partners-section styles so cards match leadership layout */
.expert-teams-section {
  /* Intentionally minimal — use .partners-section for layout and card styles */
  padding: 96px 0;
  text-align: center;
  /* Make cards smaller and enforce 4-per-row on large screens while keeping typography unchanged */
  /* Default: 4 columns (25%) */
  /* Medium screens: 3 columns */
  /* Small screens: 2 columns */
  /* Extra-small: full width */
}
.expert-teams-section .section-tagline {
  display: block;
  font-size: 14px;
  color: rgb(0, 136, 204);
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}
.expert-teams-section .section-title {
  font-size: 48px;
  margin: 0 auto 16px;
  max-width: 900px;
  font-weight: 700;
  line-height: 1;
}
.expert-teams-section .section-title .gradient-text {
  background: linear-gradient(100.47deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.expert-teams-section .section-description {
  color: #6b7a89;
  max-width: 672px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 28px;
}
.expert-teams-section .partner-column {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  flex: 0 0 25%;
  max-width: 25%;
  display: block;
}
.expert-teams-section .partner-card {
  width: 100%;
  max-width: 284px;
  display: flex;
  flex-direction: column;
}
.expert-teams-section .card-figure {
  height: 284px; /* smaller figure */
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
}
.expert-teams-section .card-body {
  padding: 20px;
  min-height: 120px;
}
@media (max-width: 991px) {
  .expert-teams-section .partner-column {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .expert-teams-section .card-figure {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .expert-teams-section .partner-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .expert-teams-section .card-figure {
    height: 160px;
  }
}
@media (max-width: 479px) {
  .expert-teams-section .partner-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .expert-teams-section .card-figure {
    height: 140px;
  }
}

/* Specialization cards (dark section) */
.specialization-section {
  padding: 80px 0;
  background: #1A2332;
}
.specialization-section .section-tagline {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #00D9D9;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}
.specialization-section .section-title {
  text-align: center;
  font-size: 48px;
  margin: 0 auto 16px;
  max-width: 900px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.specialization-section .section-title .gradient-text {
  background: linear-gradient(100.47deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.specialization-section .section-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.6980392157);
  max-width: 672px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 28px;
}
.specialization-section .specialization-grid {
  row-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.specialization-section .specialization-column {
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.specialization-section .special-card {
  /* Use a darker translucent card and remove inset white shadows */
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1 1 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.specialization-section .special-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex: 1 1 auto;
}
.specialization-section .special-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialization-section .special-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.specialization-section .special-title {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}
.specialization-section .special-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 16px;
}
.specialization-section .special-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.specialization-section .tag-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
}
@media (max-width: 991px) {
  .specialization-section .special-card {
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  .specialization-section .special-card {
    min-height: 160px;
  }
}
@media (max-width: 991px) {
  .specialization-section .specialization-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .specialization-section .specialization-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Languages layout */
.languages-section {
  padding: 80px 0;
  text-align: center;
}
.languages-section .section-title {
  font-size: 30px;
  line-height: 36px;
  margin: 0 auto 16px;
  font-weight: 800;
  color: #0b2a3a;
}
.languages-section .section-description {
  color: #6b7a89;
  max-width: 900px;
  margin: 0 auto 48px;
}
.languages-section .languages-list {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.languages-section .lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0F4F8;
  padding: 16px 20px;
  border-radius: 999px;
}
.languages-section .lang-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 24px;
  border-radius: 10px;
  color: #0b2a3a;
  font-weight: 500;
}
.languages-section .lang-label {
  color: #0b2a3a;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 767px) {
  .languages-section .languages-list {
    gap: 10px;
  }
  .languages-section .lang-pill {
    padding: 8px 12px;
  }
  .languages-section .lang-code {
    min-width: 32px;
    height: 32px;
  }
}

.kaci_navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 12px 0;
  overflow-x: clip;
}
.kaci_navbar .kaci_navbar_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.kaci_navbar .kaci_logo {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.kaci_navbar .kaci_logo img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
  display: block;
}
.kaci_navbar .kaci_menu_wrapper {
  display: flex;
  flex: 1;
  justify-content: center;
}
.kaci_navbar .kaci_menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}
.kaci_navbar .kaci_menu li {
  margin: 0;
  position: relative;
}
.kaci_navbar .kaci_menu li a {
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  margin-bottom: 0;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 0;
}
.kaci_navbar .kaci_menu li a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background-color: #17a2b8;
  transition: width 0.3s ease;
}
.kaci_navbar .kaci_menu li a:hover {
  color: #17a2b8;
}
.kaci_navbar .kaci_menu li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
.kaci_navbar .kaci_menu li a:hover .dropdown-arrow svg path {
  stroke: #17a2b8;
}
.kaci_navbar .kaci_menu li a.has-dropdown {
  cursor: pointer;
}
.kaci_navbar .kaci_menu li a .dropdown-arrow {
  display: inline-block;
  font-size: 10px;
  transition: transform 0.3s ease;
  margin-left: 4px;
}
.kaci_navbar .kaci_menu li a .dropdown-arrow svg path {
  transition: stroke 0.2s ease;
}
.kaci_navbar .kaci_menu li .submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 12px;
  list-style: none;
  margin: 0;
  padding: 16px 0;
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}
.kaci_navbar .kaci_menu li .submenu li {
  margin: 0;
  padding: 0;
}
.kaci_navbar .kaci_menu li .submenu li a {
  display: block;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
.kaci_navbar .kaci_menu li .submenu li a::after {
  display: none;
}
.kaci_navbar .kaci_menu li .submenu li a:hover {
  background: #f0f8ff;
  color: #17a2b8;
  padding-left: 24px;
}
.kaci_navbar .kaci_menu li:hover .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.kaci_navbar .kaci_menu li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  pointer-events: auto;
}
.kaci_navbar .kaci_menu li:hover::after {
  pointer-events: auto;
}
.kaci_navbar .kaci_menu li.active .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.kaci_navbar .kaci_menu li.active > a.has-dropdown .dropdown-arrow {
  transform: rotate(180deg);
}
.kaci_navbar .kaci_cta_button {
  background: linear-gradient(102.12deg, #00D9D9 0%, #00A8A8 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 217, 217, 0.2);
  border: none;
  cursor: pointer;
}
.kaci_navbar .kaci_cta_button:hover {
  background: linear-gradient(102.12deg, #138496 0%, #138496 100%);
  transform: translateY(-4px);
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 217, 217, 0.35);
}
.kaci_navbar .kaci_hamburger {
  display: none;
}

@media (max-width: 1024px) {
  .kaci_navbar {
    padding: 10px 0;
    height: 60px;
    display: flex;
    align-items: center;
    max-width: 100vw;
    left: 0;
    right: 0;
    border-radius: 0;
    box-sizing: border-box;
  }
  .kaci_navbar .kaci_navbar_wrapper {
    gap: 10px;
  }
  .kaci_navbar .kaci_logo {
    width: 100px;
  }
  .kaci_navbar .kaci_logo img {
    width: 100%;
  }
  .kaci_navbar .kaci_menu_wrapper {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
  }
  .kaci_navbar .kaci_cta_button {
    display: none;
  }
  .kaci_navbar .kaci_menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    max-height: calc(100vh - 60px);
    background: linear-gradient(180deg, #0F1823 0%, #1A2836 50%, #006699 100%);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
    overflow: hidden;
    overflow-y: auto;
    padding: 16px 24px 24px;
    gap: 0;
    z-index: 999;
  }
  .kaci_navbar .kaci_menu li {
    margin: 0;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .kaci_navbar .kaci_menu li a {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 500;
  }
  .kaci_navbar .kaci_menu li a::after {
    display: none;
  }
  .kaci_navbar .kaci_menu li a .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
  }
  .kaci_navbar .kaci_menu li a .dropdown-arrow svg path {
    stroke: white;
  }
  .kaci_navbar .kaci_menu li:first-child {
    margin-top: 8px;
  }
  .kaci_navbar .kaci_menu li:last-child {
    border-bottom: none;
  }
  .kaci_navbar .kaci_menu li .submenu {
    position: static;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    box-shadow: none;
    margin: 0 0 12px 0;
    padding: 8px 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    flex-direction: column;
  }
  .kaci_navbar .kaci_menu li .submenu li {
    margin: 0;
    border-bottom: none;
  }
  .kaci_navbar .kaci_menu li .submenu li a {
    padding: 12px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }
  .kaci_navbar .kaci_menu li .submenu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #00D9D9;
  }
  .kaci_navbar .kaci_menu li .submenu.active {
    display: flex;
  }
  .kaci_navbar .kaci_menu.open, .kaci_navbar .kaci_menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .kaci_navbar .kaci_menu.closing {
    opacity: 0;
    visibility: visible;
    transform: translateY(-10px);
    pointer-events: none;
  }
  .kaci_navbar .kaci_menu li.submenu-open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .kaci_navbar .kaci_hamburger {
    display: block;
    cursor: pointer;
  }
  .kaci_navbar .kaci_hamburger span {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: #0F1823;
    margin-bottom: 5px;
    display: block;
    transition: all 0.3s ease-in-out;
  }
  .kaci_navbar .kaci_hamburger span:last-child {
    margin-bottom: 0;
  }
}
#nav-icon4 {
  position: relative;
  width: 28px;
  height: 20px;
  cursor: pointer;
}
#nav-icon4 span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #0F1823;
  border-radius: 2px;
  transition: all 0.3s ease;
  left: 0;
}
#nav-icon4 span:nth-child(1) {
  top: 0;
  transform-origin: center center;
}
#nav-icon4 span:nth-child(2) {
  top: 9px;
  transform-origin: center center;
}
#nav-icon4 span:nth-child(3) {
  top: 18px;
  transform-origin: center center;
}
#nav-icon4.open span {
  background: #0F1823;
}
#nav-icon4.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
  width: 100%;
}
#nav-icon4.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
#nav-icon4.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
  width: 100%;
}

.hero-section {
  background: linear-gradient(122.01deg, #0F1823 0%, #1A2332 40%, #006699 100%);
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  height: 100vh;
}
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    padding: 108px 0 72px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 96px 0 64px;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 80px 0 48px;
    text-align: center;
  }
}
.hero-section .hero-tagline {
  display: inline-block;
  background: rgba(0, 217, 217, 0.1);
  border: 1px solid rgba(0, 217, 217, 0.3);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #00D9D9;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .hero-section .hero-tagline {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }
}
.hero-section .banner-title {
  max-width: 576px;
  font-size: 60px;
  font-weight: 700;
  line-height: 62px;
  letter-spacing: 0;
}
.hero-section .banner-title span {
  color: #00bcd4;
}
@media (max-height: 770px) {
  .hero-section .banner-title {
    font-size: 56px;
    line-height: 52px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-section .banner-title {
    font-size: 36px;
    line-height: 42px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .hero-section .banner-title {
    font-size: 36px;
    line-height: 45px;
    margin: 0 auto;
  }
}
.hero-section .description {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .hero-section .description {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 28px;
  }
}
@media (max-width: 576px) {
  .hero-section .description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
}
.hero-section .button-group {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .hero-section .button-group {
    gap: 12px;
    margin-bottom: 36px;
  }
}
@media (max-width: 576px) {
  .hero-section .button-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }
}
.hero-section .button-group .btn {
  padding: 12px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .hero-section .button-group .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
  }
}
.hero-section .button-group .btn.btn-primary {
  background: linear-gradient(103.88deg, #00D9D9 0%, #00A8A8 100%);
  color: #ffffff;
  border: none;
}
.hero-section .button-group .btn.btn-primary:hover {
  background: linear-gradient(90deg, #0097a7 0%, #006064 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}
.hero-section .button-group .btn.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.hero-section .button-group .btn.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.hero-section .button-group .btn.btn-secondary, .hero-section .button-group .btn.btn-outline-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}
.hero-section .button-group .btn.btn-secondary:hover, .hero-section .button-group .btn.btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}
.hero-section .stats-row {
  border-top: 0.8px solid rgba(255, 255, 255, 0.1);
  padding-top: 48px;
}
@media (max-width: 768px) {
  .hero-section .stats-row {
    padding-top: 36px;
  }
}
@media (max-width: 576px) {
  .hero-section .stats-row {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .hero-section .stats-row .col-4 {
    text-align: center;
  }
}
.hero-section .stats-row .stats-number {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  line-height: 36px;
}
@media (max-width: 576px) {
  .hero-section .stats-row .stats-number {
    font-size: 24px;
    line-height: 32px;
  }
}
.hero-section .stats-row .stats-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  line-height: 20px;
}
@media (max-width: 576px) {
  .hero-section .stats-row .stats-text {
    font-size: 11px;
    line-height: 16px;
  }
}
.hero-section .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1023.98px) {
  .hero-section .image-container {
    display: none;
  }
}
.hero-section .image-container .img-fluid {
  border-top: 1px solid var(--color-white-10, rgba(255, 255, 255, 0.1));
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(26, 35, 50, 0.8);
  border-radius: 12px;
  padding: 32px 43px;
}
@media (max-width: 991px) {
  .hero-section .image-container .img-fluid {
    padding: 24px 24px;
  }
}
.hero-section .image-container .img-fluid img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.services-section {
  padding: 96px 0;
  text-align: center;
  background: rgba(240, 244, 248, 0.3);
  /* Card */
  /* Features */
  /* Button */
}
@media (max-width: 768px) {
  .services-section {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .services-section {
    padding: 48px 0;
  }
}
.services-section .tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgb(0, 136, 204);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .services-section .tagline {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.services-section .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .services-section .section-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .services-section .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
}
.services-section .section-title .gradient-text {
  background: linear-gradient(99.18deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.services-section .section-description {
  font-size: 18px;
  color: rgb(72, 101, 129);
  max-width: 620px;
  margin: 0 auto 64px;
  line-height: 28px;
}
@media (max-width: 768px) {
  .services-section .section-description {
    font-size: 16px;
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .services-section .section-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
  }
}
.services-section .service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px;
  text-align: left;
  transition: all 0.35s ease;
  border: 1px solid #f1f5f9;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .services-section .service-card {
    padding: 24px;
    border-radius: 14px;
  }
}
.services-section .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}
.services-section .service-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
@media (max-width: 576px) {
  .services-section .service-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    margin-bottom: 16px;
  }
}
.services-section .service-card .card-title {
  font-size: 24px;
  font-weight: 700;
  color: black;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .services-section .service-card .card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
}
.services-section .service-card .card-description {
  font-size: 16px;
  color: rgb(72, 101, 129);
  line-height: 24px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .services-section .service-card .card-description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
  }
}
.services-section .card-features {
  margin-bottom: 34px;
}
@media (max-width: 576px) {
  .services-section .card-features {
    margin-bottom: 20px;
  }
}
.services-section .card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .services-section .card-features li {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.services-section .card-features li .feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-section .card-features li .feature-text {
  color: rgb(0, 102, 153);
  font-weight: 500;
}
.services-section .card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: rgb(0, 136, 204);
  text-decoration: none;
  margin-top: auto;
}
@media (max-width: 576px) {
  .services-section .card-button {
    font-size: 14px;
  }
}
.services-section .card-button:hover {
  gap: 10px;
  text-decoration: none;
  color: #006699;
}
.services-section .card-button:hover svg path {
  stroke: #006699;
}
.services-section .card-button svg {
  transition: transform 0.25s ease;
}
.services-section .card-button svg path {
  transition: stroke 0.25s ease;
}
.services-section .card-button:hover svg {
  transform: translateX(3px);
}

.partners-section {
  padding: 96px 0;
  background: #f8f9fb;
  text-align: center;
}
@media (max-width: 768px) {
  .partners-section {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .partners-section {
    padding: 48px 0;
  }
}
.partners-section .tagline {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: rgb(0, 136, 204);
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .partners-section .tagline {
    font-size: 12px;
  }
}
.partners-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 576px) {
  .partners-section .section-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
}
.partners-section .description {
  max-width: 600px;
  margin: 0 auto 64px;
  color: #6c757d;
}
@media (max-width: 768px) {
  .partners-section .description {
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .partners-section .description {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.partners-section .partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 24px;
}
@media (max-width: 576px) {
  .partners-section .partners-grid {
    row-gap: 16px;
  }
}
.partners-section .partner-logo {
  width: 176px;
  height: 96px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 576px) {
  .partners-section .partner-logo {
    width: 100%;
    max-width: 100px;
    height: auto;
  }
}

.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0a1628 0%, #0d1f35 100%);
  color: #fff;
}
@media (max-width: 768px) {
  .about-section {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .about-section {
    padding: 48px 0;
  }
}
.about-section .tagline {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  color: rgb(0, 217, 217);
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .about-section .tagline {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.about-section .section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .about-section .section-title {
    font-size: 40px;
    line-height: 44px;
  }
}
@media (max-width: 768px) {
  .about-section .section-title {
    font-size: 32px;
    line-height: 38px;
  }
}
@media (max-width: 576px) {
  .about-section .section-title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
}
.about-section .section-title .gradient-text {
  background: linear-gradient(101.69deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-section .description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 32px;
}
@media (max-width: 991px) {
  .about-section .description {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 576px) {
  .about-section .description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .about-section .feature-cards {
    gap: 16px;
  }
}
.about-section .feature-card {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}
@media (max-width: 576px) {
  .about-section .feature-card {
    padding: 20px;
  }
}
.about-section .feature-card .feature-icon {
  color: #00d4c8;
  margin-bottom: 18px;
}
@media (max-width: 576px) {
  .about-section .feature-card .feature-icon {
    margin-bottom: 12px;
  }
}
.about-section .feature-card .feature-icon svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 576px) {
  .about-section .feature-card .feature-icon svg {
    width: 24px;
    height: 24px;
  }
}
.about-section .feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}
@media (max-width: 576px) {
  .about-section .feature-card h3 {
    font-size: 16px;
  }
}
.about-section .feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 20px;
}
@media (max-width: 576px) {
  .about-section .feature-card p {
    font-size: 13px;
  }
}
.about-section .right-content {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .about-section .right-content {
    justify-content: center;
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .about-section .right-content {
    margin-top: 32px;
  }
}
.about-section .info-items {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  max-width: 576px;
}
@media (max-width: 576px) {
  .about-section .info-items {
    padding: 24px;
    max-width: 100%;
  }
}
.about-section .info-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  .about-section .info-card {
    gap: 12px;
    margin-bottom: 20px;
  }
}
.about-section .info-card:last-child {
  margin-bottom: 0;
}
.about-section .info-card .info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .about-section .info-card .info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}
.about-section .info-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}
@media (max-width: 576px) {
  .about-section .info-card h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.about-section .info-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin: 0;
  line-height: 24px;
}
@media (max-width: 576px) {
  .about-section .info-card p {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .about-section .left-content,
  .about-section .right-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .about-section .feature-cards {
    margin-left: -8px;
    margin-right: -8px;
  }
  .about-section .feature-cards > [class*=col-] {
    padding-left: 8px;
    padding-right: 8px;
  }
  .about-section .info-items {
    max-width: 100%;
  }
}

.contact-section {
  padding: 96px 0;
  background: linear-gradient(135deg, #00A8A8 0%, #006699 100%);
  text-align: center;
}
.contact-section .cta-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.2;
}
.contact-section .cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.contact-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-section .cta-buttons .btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-section .cta-buttons .btn.primary {
  background: #fff;
  color: #0066a6;
  border: 2px solid #fff;
}
.contact-section .cta-buttons .btn.primary:hover {
  background: #f1efef;
}
.contact-section .cta-buttons .btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.contact-section .cta-buttons .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
  .contact-section {
    padding: 64px 24px;
  }
  .contact-section .cta-title {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .contact-section .cta-description {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 32px;
  }
  .contact-section .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
  .contact-section .cta-buttons .btn {
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .contact-section {
    padding: 52px 16px;
  }
  .contact-section .cta-title {
    font-size: 26px;
    line-height: 1.3;
  }
}
.site-main {
  margin-bottom: 0;
}

.error-404 {
  height: calc(100vh - 103px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
}
.error-404 .error_layout {
  width: 100%;
}
.error-404 .error_info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}
.error-404 .error_info .error_404 h1 {
  font-size: 120px;
  font-weight: 800;
  color: black;
  text-align: right;
  margin: 0;
}
.error-404 .error_info .error_message h2 {
  font-size: 34px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}
.error-404 .error_info .error_message p {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

@media (max-width: 1200px) {
  .error-404 .error_info .error_404 h1 {
    font-size: 100px;
  }
  .error-404 .error_info .error_message h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .error-404 .error_info {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .error-404 .error_info .error_404 h1 {
    text-align: center;
    font-size: 48px;
  }
  .error-404 .error_info .error_message h2 {
    text-align: center !important;
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .error-404 .error_info {
    flex-direction: column;
    text-align: center;
  }
  .error-404 .error_info .error_404 h1 {
    text-align: center;
    font-size: 42px;
  }
  .error-404 .error_info .error_message h2 {
    text-align: center !important;
    font-size: 28px;
  }
}
.services-hero {
  background: linear-gradient(106.61deg, #0F1823 0%, #1A2332 40%, #006699 100%);
  padding: 130px 0 80px;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .services-hero {
    padding: 100px 0 60px;
  }
}
@media (max-width: 576px) {
  .services-hero {
    padding: 80px 0 48px;
  }
}
.services-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services-hero .services-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgb(0, 217, 217);
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .services-hero .services-tagline {
    font-size: 12px;
    margin-bottom: 12px;
  }
}
.services-hero .services-title {
  padding: 0 91px;
  margin-bottom: 16px;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 60px;
}
.services-hero .services-title .gradient-text {
  background: linear-gradient(102.27deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 768px) {
  .services-hero .services-title {
    padding: 0;
    font-size: 42px;
    line-height: 48px;
  }
}
@media (max-width: 576px) {
  .services-hero .services-title {
    padding: 0;
    font-size: 36px !important;
    line-height: 40px;
    margin-bottom: 0;
  }
}
.services-hero .services-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 672px;
  margin: 0 auto 48px;
  line-height: 28px;
}
@media (max-width: 768px) {
  .services-hero .services-description {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .services-hero .services-description {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
  }
}
.services-hero .services-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .services-hero .services-pills {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.services-hero .service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 12px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 576px) {
  .services-hero .service-pill {
    padding: 10px 18px;
  }
}
.services-hero .service-pill:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}
.services-hero .service-pill .pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00D9D9;
}
.services-hero .service-pill .pill-icon svg {
  width: 16px;
  height: 16px;
}
.services-hero .service-pill .pill-text {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}

.relocation-services {
  padding: 96px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .relocation-services {
    padding: 64px 0;
  }
}
@media (max-width: 576px) {
  .relocation-services {
    padding: 48px 0;
  }
}
.relocation-services > .container > .row {
  gap: 64px;
}
@media (max-width: 768px) {
  .relocation-services > .container > .row {
    gap: 48px;
  }
}
@media (min-width: 992px) {
  .relocation-services .col-lg-6 {
    flex: 0 0 calc(50% - 32px);
    max-width: calc(50% - 32px);
  }
}

.relocation-services__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.relocation-services__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}

.relocation-services__tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgb(0, 136, 204);
}

.relocation-services__title {
  font-size: 36px;
  font-weight: 700;
  color: black;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .relocation-services__title {
    font-size: 28px;
  }
}

.relocation-services__title .gradient-text {
  display: block;
  background: linear-gradient(102.27deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.relocation-services__description {
  font-size: 18px;
  color: rgb(72, 101, 129);
  line-height: 1.6;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .relocation-services__description {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.relocation-services__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .relocation-services__buttons {
    flex-direction: column;
    gap: 12px;
  }
}

.relocation-services__buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 576px) {
  .relocation-services__buttons .btn {
    width: 100%;
  }
}

.relocation-services__buttons .btn-primary {
  background: linear-gradient(105.4deg, #00D9D9 0%, #00A8A8 100%);
  color: #ffffff !important;
  border: none !important;
}

.relocation-services__buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
  color: #ffffff !important;
}

.relocation-services__buttons .btn-outline {
  background: #ffffff !important;
  color: #0F1823 !important;
  border: 1px solid #D1D5DB !important;
}

.relocation-services__buttons .btn-outline:hover {
  border-color: #0088CC !important;
  color: #0088CC !important;
  background: #ffffff !important;
}

.relocation-card {
  background: #ffffff;
  padding: 24px;
}

.relocation-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.relocation-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #0F1823;
  margin-bottom: 8px;
}

.relocation-card__description {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

.relocation-process__wrapper {
  background-color: rgb(241, 245, 248);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-top: 80px;
}
@media (max-width: 768px) {
  .relocation-process__wrapper {
    padding: 32px 24px;
  }
}

.relocation-process__title {
  font-size: 24px;
  font-weight: 700;
  color: #0F1823;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .relocation-process__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
}

.relocation-process__steps {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 991px) {
  .relocation-process__steps {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .relocation-process__steps {
    flex-direction: column;
    align-items: center;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 200px;
}
@media (max-width: 991px) {
  .process-step {
    flex: 0 0 calc(50% - 16px);
    max-width: 200px;
  }
}
@media (max-width: 576px) {
  .process-step {
    flex: 0 0 100%;
    max-width: 250px;
  }
}

.process-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgb(0, 168, 168);
  border-radius: 16px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.process-step__title {
  font-size: 16px;
  font-weight: 600;
  color: #0F1823;
  margin-bottom: 8px;
}

.process-step__description {
  font-size: 14px;
  color: rgb(72, 101, 129);
  line-height: 1.5;
}

.property-services {
  padding: 96px 0;
  background-color: rgba(240, 244, 248, 0.5);
}

.property-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.property-card-inner {
  position: relative;
  padding: 32px;
  padding-right: 120px;
  min-height: 180px;
  pointer-events: none;
}

.apps-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.app-content {
  flex: 1;
}

.app-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px 0;
}

.app-text {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.property-blob {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 160px;
  background: rgba(0, 217, 217, 0.2);
  border-radius: 50%;
  filter: blur(20px);
  z-index: 1;
  pointer-events: none;
}

.property-stats {
  padding: 24px 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  pointer-events: auto;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.stat-number {
  font-size: 24px;
  font-weight: 700;
  color: #1a365d;
}

.stat-label {
  font-size: 13px;
  color: #6b7280;
}

.property-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 48px;
}

.property-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.property-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.property-tagline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: rgb(0, 136, 204);
}

.property-title h2, .property-title p {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a365d;
  margin: 0;
}
.property-title span {
  background: linear-gradient(90deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.property-description {
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  margin: 0;
  max-width: 576px;
}

.property-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.property-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #1a365d;
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg {
  width: 20px;
  height: 20px;
}

.property-button {
  padding-top: 8px;
}
.property-button .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(106.47deg, #00D9D9 0%, #00A8A8 100%);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.property-button .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 136, 204, 0.3);
}

@media (max-width: 991px) {
  .property-content {
    padding-left: 0;
    padding-top: 48px;
  }
  .property-title h2, .property-title p {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .property-services {
    padding: 64px 0;
  }
  .property-card-inner {
    padding-right: 32px;
  }
  .property-blob {
    display: none;
  }
  .property-title h2, .property-title p {
    font-size: 26px;
  }
}
.digital-services {
  padding: 96px 0;
  background-color: #fff;
}

.digital-header {
  margin-bottom: 64px;
}

.digital-header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.digital-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.digital-tagline {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: rgb(0, 136, 204);
}

.digital-title h2, .digital-title p {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a365d;
  margin-bottom: 24px;
}
.digital-title span {
  background: linear-gradient(108.07deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.digital-description {
  font-size: 18px;
  line-height: 28px;
  color: #6b7280;
  margin: 0 auto;
  max-width: 672px;
}

.digital-services-row {
  margin-bottom: 80px;
}

.service-card {
  position: relative;
  padding: 32px;
  height: 100%;
  background: rgba(240, 244, 248, 0.3);
  border-radius: 16px;
}

.service-card--popular {
  position: relative;
}

.popular-badge {
  position: absolute;
  top: 32px;
  right: 32px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #00D9D9 0%, #0088CC 100%);
  border-radius: 20px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 24px;
}

.service-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 16px;
}

.service-card-description {
  font-size: 16px;
  line-height: 24px;
  color: #6b7280;
  margin-bottom: 24px;
}

.service-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1a365d;
}

.feature-check {
  width: 14px;
  height: 14px;
  min-width: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b8b8;
  margin-top: 2px;
}
.feature-check svg {
  width: 14px;
  height: 14px;
}

.digital-packages {
  background: rgb(26, 35, 50);
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  padding: 48px 48px 80px 48px;
}

.packages-header {
  margin-bottom: 16px;
}

.packages-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
}

.packages-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.packages-row .row {
  --bs-gutter-x: 24px;
}

.package-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--color-white-10, rgba(255, 255, 255, 0.1));
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.package-card--featured {
  background: linear-gradient(135deg, #00A8A8 0%, #006699 100%);
  border: 1px solid var(--color-cyan-43, rgb(0, 217, 217));
}
.package-card--featured .package-name,
.package-card--featured .price,
.package-card--featured .package-description {
  color: #fff;
}
.package-card--featured .price-suffix {
  color: rgba(255, 255, 255, 0.7);
}
.package-card--featured .package-features li {
  color: rgba(255, 255, 255, 0.9);
}
.package-card--featured .feature-check {
  color: #00D9D9;
}

.most-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  font-size: 12px;
  font-weight: 600;
  color: #1a365d;
  background: #fff;
  border-radius: 20px;
  white-space: nowrap;
}

.package-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #00D9D9;
  margin-bottom: 8px;
}

.package-price {
  margin-bottom: 12px;
}

.price {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  color: #fff;
}

.price-suffix {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.package-description {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 24px 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}
.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-check {
  color: #00D9D9;
}

.package-button {
  margin-top: auto;
}
.package-button .btn {
  display: block;
  width: 100%;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.package-button .btn-outline {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.package-button .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.package-button .btn-light {
  color: #1a365d;
  background: #fff;
  border: 2px solid #fff;
}
.package-button .btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
  .digital-services-row .col-lg-4 {
    margin-bottom: 32px;
  }
  .digital-packages {
    padding: 40px 24px;
  }
  .packages-row .col-lg-4 {
    margin-bottom: 24px;
  }
  .digital-title h2, .digital-title p {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .digital-services {
    padding: 64px 0;
  }
  .digital-title h2, .digital-title p {
    font-size: 28px;
  }
  .packages-title {
    font-size: 26px;
  }
  .price {
    font-size: 28px;
  }
}
.investment-services {
  padding: 96px 0;
  background: linear-gradient(135deg, #E8F4F8 0%, #F0F9FF 100%);
}
.investment-services > .container > .row {
  gap: 48px;
}
@media (min-width: 992px) {
  .investment-services .col-lg-6 {
    flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}
@media (max-width: 991px) {
  .investment-services {
    padding: 64px 0;
  }
}

.investment-content {
  padding-right: 24px;
}
@media (max-width: 991px) {
  .investment-content {
    padding-right: 0;
  }
}

.investment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.investment-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.investment-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #0088CC;
}

.investment-title {
  font-size: 36px;
  font-weight: 700;
  color: #0F1823;
  line-height: 1.2;
  margin-bottom: 24px;
}
.investment-title .gradient-text {
  display: block;
  background: linear-gradient(102.27deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 576px) {
  .investment-title {
    font-size: 28px;
  }
}

.investment-description {
  font-size: 18px;
  color: #486581;
  line-height: 1.6;
  margin-bottom: 32px;
}

.investment-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.investment-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.investment-item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.investment-item-content {
  flex: 1;
}

.investment-item-title {
  font-size: 16px;
  font-weight: 600;
  color: #0F1823;
  margin: 0 0 4px 0;
}

.investment-item-text {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

.investment-button .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  background: linear-gradient(105.4deg, #00D9D9 0%, #00A8A8 100%);
  color: #ffffff;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
.investment-button .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
}

.investment-stats-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.investment-stats-title {
  font-size: 20px;
  font-weight: 700;
  color: #0F1823;
  margin: 0 0 32px 0;
}

.investment-stats-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.investment-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px;
  background: rgb(230, 255, 255);
  border-radius: 12px;
}

.investment-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: rgb(0, 136, 204);
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.investment-stat-info {
  flex: 1;
}

.investment-stat-label {
  font-size: 14px;
  color: rgb(0, 102, 153);
  line-height: 1.4;
}

.investment-stat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.investment-stat-tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #0088CC;
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: 4px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .investment-items {
    margin-bottom: 24px;
  }
  .investment-stats-card {
    margin-top: 32px;
  }
}
@media (max-width: 576px) {
  .investment-stats-card {
    padding: 24px;
  }
  .investment-stat-value {
    font-size: 24px;
    min-width: 60px;
  }
}
@media (max-width: 1024px) {
  .references-hero {
    padding: 40px 0 24px 0;
  }
  .references-hero .references-title {
    font-size: 2rem;
    line-height: 2.2rem;
  }
  .references-hero .references-description {
    font-size: 1rem;
  }
  .references-hero .references-stats {
    flex-direction: column;
    gap: 16px;
  }
  .references-hero .references-stats .reference-stat {
    min-width: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .references-hero {
    padding: 24px 0 12px 0;
  }
  .references-hero .references-title {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }
  .references-hero .references-description {
    font-size: 0.95rem;
  }
}
.references-hero {
  background: linear-gradient(109.24deg, #0F1823 0%, #1A2332 40%, #006699 100%);
  color: #fff;
  padding: 130px 0 0 0;
  text-align: center;
}
.references-hero .references-tagline {
  background: rgba(255, 255, 255, 0.08);
  color: #b3e5fc;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}
.references-hero .references-title {
  max-width: 896px;
  font-size: 60px;
  line-height: 64px;
  font-weight: 700;
  margin: 0 auto 24px;
}
.references-hero .references-title .gradient-text {
  background: linear-gradient(102.43deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.references-hero .references-description {
  font-size: 18px;
  color: #cfd8dc;
  margin-bottom: 48px;
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}
.references-hero .references-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
}
.references-hero .references-stats .reference-stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 32px;
  min-width: 120px;
}
.references-hero .references-stats .reference-stat .stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}
.references-hero .references-stats .reference-stat .stat-label {
  font-size: 0.95rem;
  color: #b0bec5;
}
.references-hero .references-filters {
  padding: 48px 0;
  background: #fbfcfd;
  border-bottom: 1px solid var(--color-azure-89, rgb(217, 226, 236));
  text-align: center;
  gap: 16px;
  display: flex;
  justify-content: center;
}
.references-hero .references-filters .filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgb(188, 204, 220);
  background: white;
  border-radius: 20px;
  padding: 8px 22px;
  font-size: 1rem;
  color: rgb(26, 35, 50);
  font-weight: 500;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  .references-projects .reference-project-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  .references-projects .reference-project-card .project-card-left, .references-projects .reference-project-card .project-card-right {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 600px) {
  .references-projects .reference-project-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
  }
  .references-projects .reference-project-card .project-card-left, .references-projects .reference-project-card .project-card-right {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
}
@media (max-width: 1024px) {
  .references-projects {
    padding: 24px 0 40px 0;
  }
  .references-projects .references-section-title {
    font-size: 1.5rem;
  }
  .references-projects .reference-project-card {
    flex-direction: column;
    min-height: unset;
  }
  .references-projects .reference-project-card .project-card-left, .references-projects .reference-project-card .project-card-right {
    padding: 24px 16px;
    border-radius: 16px !important;
  }
  .references-projects .reference-project-card .project-card-right {
    border-radius: 0 0 16px 16px;
  }
}
@media (max-width: 600px) {
  .references-projects {
    padding: 12px 0 24px 0;
  }
  .references-projects .references-section-title {
    font-size: 1.1rem;
  }
  .references-projects .reference-project-card {
    flex-direction: column;
  }
  .references-projects .reference-project-card .project-card-left, .references-projects .reference-project-card .project-card-right {
    padding: 16px 8px;
  }
}
.references-projects {
  background: #fafbfc;
  padding: 40px 0 80px 0;
}
.references-projects .references-section-tagline {
  color: rgb(0, 136, 204);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 16px;
  text-align: center;
}
.references-projects .references-section-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 48px 0;
  text-align: center;
}
.references-projects .references-project-list {
  max-width: 1200px;
  margin: 0 auto;
}
.references-projects .reference-project-card {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0px 8px 10px -6px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 20px 25px -5px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  align-items: stretch;
  margin-bottom: 32px;
  min-height: 320px;
}
.references-projects .reference-project-card .project-card-left,
.references-projects .reference-project-card .project-card-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px 18px;
  min-width: 0;
}
.references-projects .reference-project-card .project-card-left {
  background: linear-gradient(135deg, #00A8A8 0%, #006699 100%);
  border-radius: 16px 0 0 16px;
}
.references-projects .reference-project-card .project-card-left .project-logo {
  margin-bottom: 12px;
  width: 128px;
  height: 128px;
}
.references-projects .reference-project-card .project-card-left .project-logo img, .references-projects .reference-project-card .project-card-left .project-logo svg {
  width: 100%;
  height: 100%;
}
.references-projects .reference-project-card .project-card-left .project-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.references-projects .reference-project-card .project-card-left .project-subtitle {
  font-size: 0.95rem;
  color: #b3e5fc;
}
.references-projects .reference-project-card .project-card-right {
  background: #fff;
  border-radius: 0 16px 16px 0;
  align-items: flex-start;
}
.references-projects .reference-project-card .project-card-right .project-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.references-projects .reference-project-card .project-card-right .project-tags .project-tag {
  background: #e0f7fa;
  color: rgb(0, 102, 153);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
}
.references-projects .reference-project-card .project-card-right .project-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.references-projects .reference-project-card .project-card-right .project-description {
  color: #607d8b;
  font-size: 16px;
  margin-bottom: 24px;
}
.references-projects .reference-project-card .project-card-right .project-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.references-projects .reference-project-card .project-card-right .project-stats .project-stat {
  text-align: center;
  background: #f5f7fa;
  border-radius: 8px;
  padding: 12px 18px;
  min-width: 90px;
}
.references-projects .reference-project-card .project-card-right .project-stats .project-stat .stat-value {
  font-size: 22px;
  font-weight: 700;
  color: rgb(0, 136, 204);
  display: block;
}
.references-projects .reference-project-card .project-card-right .project-stats .project-stat .stat-label {
  font-size: 14px;
  color: rgb(72, 101, 129);
}
.references-projects .reference-project-card .project-card-right .case-study-link {
  background: linear-gradient(101.55deg, #00D9D9 0%, #00A8A8 100%);
  color: #fff;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(30, 198, 230, 0.08);
}
.references-projects .reference-project-card .project-card-right .case-study-link:hover {
  background: linear-gradient(101.55deg, #00D9D9 0%, #00A8A8 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px 0 rgba(30, 198, 230, 0.25);
}

@media (max-width: 600px) {
  .references-projects .project-stats {
    gap: 8px !important;
    flex-wrap: wrap !important;
  }
  .references-projects .project-stats .project-stat {
    min-width: 70px !important;
    padding: 8px 6px !important;
  }
  .references-projects .project-stats .project-stat .stat-value {
    font-size: 14px !important;
  }
  .references-projects .project-stats .project-stat .stat-label {
    font-size: 10px !important;
  }
}
.portfolio-section {
  background: #f0f4f8;
  padding: 96px 0;
}
.portfolio-section .header-title {
  text-align: center;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .portfolio-section .header-title {
    margin-bottom: 48px;
  }
}
@media (max-width: 576px) {
  .portfolio-section .header-title {
    margin-bottom: 32px;
  }
}
.portfolio-section .header-title .portfolio-section-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  color: rgb(0, 136, 204);
  margin-bottom: 16px;
}
.portfolio-section .header-title .portfolio-section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.portfolio-section .header-title .portfolio-section-description {
  color: rgb(72, 101, 129);
  font-size: 18px;
  text-align: center;
}
.portfolio-section .portfolio-card {
  border-radius: 20px;
  box-shadow: 0 8px 32px 0 rgba(30, 60, 114, 0.1);
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.portfolio-section .portfolio-card .portfolio-card-top {
  padding: 28px;
  border-radius: 20px 20px 0 0;
  min-height: 140px;
  background: inherit;
  color: #fff;
  position: relative;
}
.portfolio-section .portfolio-card .portfolio-card-top .portfolio-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #e0f7fa;
  font-size: 13px;
  font-weight: 500;
  border-radius: 12px;
  padding: 4px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 72px;
}
.portfolio-section .portfolio-card .portfolio-card-top .portfolio-tag .portfolio-tag-icon {
  display: inline-block;
  vertical-align: middle;
}
.portfolio-section .portfolio-card .portfolio-card-top .portfolio-tag .portfolio-tag-icon svg {
  width: 16px;
  height: 16px;
}
.portfolio-section .portfolio-card .portfolio-card-top h5 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 0;
  color: #fff;
}
.portfolio-section .portfolio-card .portfolio-card-top .portfolio-subtitle {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 14px;
  font-weight: 400;
}
.portfolio-section .portfolio-card .portfolio-card-bottom {
  background: #fff;
  padding: 24px;
  border-radius: 0 0 20px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-description {
  color: rgb(72, 101, 129);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .stats-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 18px;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .stats-row .stat-item {
  margin-right: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .stats-row .stat-item .font-weight-bold {
  font-size: 16px;
  line-height: 28px;
  font-weight: 700;
  color: rgb(0, 136, 204);
}
.portfolio-section .portfolio-card .portfolio-card-bottom .stats-row .stat-item .text-muted {
  font-size: 12px;
  color: rgb(98, 125, 152);
  line-height: 1.1;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .btn-link {
  color: #0088cc;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  padding: 0;
  transition: color 0.2s;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .btn-link:hover {
  color: #005f99;
  text-decoration: underline;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .btn-link span {
  font-size: 1.1em;
  margin-left: 4px;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-btn {
  color: rgb(0, 136, 204);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  display: inline-block;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-btn:hover {
  color: #1565c0;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-btn span {
  transition: margin-left 0.2s;
}
.portfolio-section .portfolio-card .portfolio-card-bottom .portfolio-btn:hover span {
  margin-left: 10px;
}

.testimonials-section {
  background: #fff;
  padding: 96px 0;
}
.testimonials-section .header-titles {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials-section .header-titles .testimonials-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #1ec6e6;
  margin-bottom: 8px;
  text-transform: uppercase;
  text-align: center;
}
.testimonials-section .header-titles .testimonials-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
.testimonials-section .testimonial-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonials-section .testimonial-card .testimonial-stars {
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.testimonials-section .testimonial-card .testimonial-stars .star {
  margin-right: 2px;
}
.testimonials-section .testimonial-card .testimonial-quote {
  color: #3a4a5d;
  font-size: 1.08rem;
  margin-bottom: 18px;
  font-style: italic;
  min-height: 80px;
  text-align: left;
}
.testimonials-section .testimonial-card .testimonial-client {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  background: #2196f3;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-meta {
  text-align: left;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-meta .testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-meta .testimonial-role {
  font-size: 0.95rem;
  color: #7b8ca3;
}
.testimonials-section .testimonial-card .testimonial-client .testimonial-meta .testimonial-company {
  color: #2196f3;
}

@media (max-width: 991px) {
  .testimonial-card {
    margin-bottom: 32px;
  }
}
.approach-section {
  background: rgb(26, 35, 50);
  color: #fff;
  padding: 96px 0;
  position: relative;
}
.approach-section .headings {
  text-align: center;
  margin-bottom: 64px;
}
.approach-section .section-tagline {
  color: rgb(0, 217, 217);
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.approach-section .section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}
.approach-section .section-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 672px;
  margin-left: auto;
  margin-right: auto;
}
.approach-section .approach-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.approach-section .approach-step {
  border-radius: 12px;
  padding: 32px 16px;
  width: 100%;
  max-width: 280px;
  min-width: 220px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
  position: relative;
  min-height: 250px;
  margin-bottom: 32px;
}
.approach-section .approach-step:hover {
  box-shadow: 0 4px 24px rgba(61, 225, 201, 0.12);
  border-color: #3de1c9;
}
.approach-section .step-number {
  background: #3de1c9;
  color: #232b33;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 18px auto;
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(61, 225, 201, 0.15);
  border: 3px solid #232b33;
}
.approach-section .step-icon {
  margin-bottom: 24px;
  margin-top: 12px;
}
.approach-section .step-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}
.approach-section .step-description {
  color: #b0b8c1;
  font-size: 14px;
  text-align: center;
  max-width: 214px;
}

.approach-section::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #3de1c9 0%, rgba(35, 43, 51, 0.1) 80%);
  opacity: 0.18;
  filter: blur(30px);
  z-index: 1;
}

.consultation {
  padding-top: 80px;
  background: linear-gradient(135deg, #F0F4F8 0%, #FFFFFF 50%, rgba(230, 255, 255, 0.3) 100%);
}
.consultation .section-header {
  text-align: center;
  max-width: 896px;
  margin: 0 auto 64px;
}
.consultation .section-header .tagline {
  background: rgba(0, 168, 168, 0.1);
  color: rgb(0, 102, 153);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 24px;
  text-align: center;
  gap: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.consultation .section-header .section-title {
  font-size: 60px;
  line-height: 1.02;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.consultation .section-header .section-title .gradient-text {
  background: linear-gradient(95.92deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.consultation .section-header .description {
  color: #6b7f86;
  text-align: center;
  font-size: 20px;
  padding: 0 25px;
}
.consultation .consultation-channels .channels-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}
.consultation .consultation-channels .channels-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.consultation .consultation-channels .channels-list .contact-channel {
  background: #ffffff;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.consultation .consultation-channels .channels-list .contact-channel .contact-channel-label {
  color: rgb(98, 125, 152);
  font-weight: 600;
  font-size: 12px;
  margin-bottom: 4px;
}
.consultation .consultation-channels .channels-list .contact-channel .contact-channel-value {
  font-size: 18px;
  color: rgb(26, 35, 50);
  font-weight: 700;
}
.consultation .consultation-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(10, 40, 50, 0.04);
}
.consultation .consultation-form-card .form-header {
  margin-bottom: 18px;
}
.consultation .consultation-form-card .form-header .form-title {
  font-size: 28px;
  font-weight: 800;
  color: #102027;
  margin-bottom: 6px;
}
.consultation .consultation-form-card .form-header .form-subtitle {
  color: #6b7f86;
  font-size: 15px;
  margin-bottom: 18px;
}
.consultation .consultation-form-card .services-row {
  margin-top: 16px;
}
.consultation .consultation-form-card .services-row .services-card {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 150, 160, 0.08);
  padding: 14px 16px;
  cursor: pointer;
  transition: box-shadow 0.12s ease, transform 0.08s ease, border-color 0.12s ease;
  background-clip: padding-box;
}
.consultation .consultation-form-card .services-row .services-card:is(button) {
  background: transparent;
}
.consultation .consultation-form-card .services-row .services-card .service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(0, 217, 217, 0.08);
  color: #00aeb0;
  flex: 0 0 auto;
}
.consultation .consultation-form-card .services-row .services-card .service-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.consultation .consultation-form-card .services-row .services-card .service-card-content .service-title {
  display: block;
  font-weight: 800;
  font-size: 16px;
  color: #102027;
  line-height: 1.1;
}
.consultation .consultation-form-card .services-row .services-card .service-card-content .service-desc {
  display: block;
  color: #7b8c92;
  font-size: 13px;
  margin-top: 0;
  line-height: 1.2;
}
.consultation .consultation-form-card .services-row .services-card:hover {
  box-shadow: 0 8px 22px rgba(10, 40, 50, 0.06);
  transform: translateY(-2px);
}
.consultation .consultation-form-card .services-row .services-card.active {
  border-color: rgba(0, 217, 217, 0.36);
  background: linear-gradient(90deg, #f7ffff, #ffffff);
}
.consultation .consultation-form-card .consultation-form-wrapper {
  margin-top: 18px;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 input[type=text],
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 input[type=email],
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(14, 37, 46, 0.06);
  background: #fbfeff;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 .two-cols {
  display: flex;
  gap: 16px;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 .two-cols .form-control {
  flex: 1;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 textarea {
  min-height: 120px;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 .wpcf7-submit {
  background: linear-gradient(90deg, #00d9d9, #00b3b3);
  color: #fff;
  border-radius: 999px;
  padding: 12px 26px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.consultation .consultation-form-card .consultation-form-wrapper .wpcf7 .form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}
.consultation .consultation-footer-badges {
  margin-top: 80px;
  margin-bottom: 40px;
  gap: 16px;
  text-align: center;
  justify-content: center;
}
.consultation .consultation-footer-badges .footer-badge {
  background: rgb(240, 244, 248);
  padding: 24px 16px;
  max-width: 292px;
  border: 1px solid var(--color-azure-89, rgb(217, 226, 236));
  border-radius: 16px;
}
.consultation .consultation-footer-badges .footer-badge .badge-label {
  margin-top: 10px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
}
.consultation .consultation-footer-badges .footer-badge .badge-desc {
  color: #6b7f86;
  font-size: 12px;
}

.faq-section {
  text-align: center;
  background: #f7f9fb;
  padding: 96px 0;
}
.faq-section .section-title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
.faq-section .faq-subtitle {
  color: rgb(72, 101, 129);
  font-size: 16px;
  margin-bottom: 64px;
  font-weight: 400;
}
.faq-section .faq-accordion {
  text-align: left;
}
.faq-section .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s;
  border: 1px solid #f0f4f8;
}
.faq-section .faq-item.active {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-color: #e0e8ef;
}
.faq-section .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  outline: none;
  color: #222b45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.faq-section .faq-item.active .faq-answer {
  border-top: 2px solid #e0e8ef;
  margin-left: 24px;
  margin-right: 24px;
  padding-top: 16px;
}
.faq-section .faq-question:hover {
  background: #f5f7fa;
}
.faq-section .faq-answer {
  display: none;
  padding: 0 0 24px 0;
  color: #4a5a6a;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-section .faq-answer .faq-answer p {
  margin-bottom: 0 !important;
}
.faq-section .faq-item.active .faq-answer {
  display: block;
}
.faq-section .faq-arrow {
  display: inline-flex;
  margin-left: 12px;
  transition: transform 0.3s;
}
.faq-section .faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.hero-layout {
  position: relative;
  padding: 90px 0 100px;
  background: linear-gradient(105.38deg, #0F1823 0%, #1A2332 40%, #006699 100%);
  color: #ffffff;
}
.hero-layout:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* subtle vignette + teal highlight to the right */
  background: var(--color-azure-4010, rgba(0, 136, 204, 0.1));
}
.hero-layout .content {
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}
.hero-layout .content .services-tagline {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  letter-spacing: 0;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
}
.hero-layout .content .services-title {
  font-size: 60px;
  line-height: 1.02;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  /* Allow editors to wrap highlighted words with a span.accent */
}
.hero-layout .content .services-title .gradient-text {
  background: linear-gradient(100.47deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-layout .content .services-description {
  padding: 0 20px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 900px) {
  .hero-layout {
    padding: 60px 0 80px;
  }
  .hero-layout .services-title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .hero-layout {
    padding: 40px 0 60px;
  }
  .hero-layout .services-tagline {
    font-size: 12px;
    padding: 6px 12px;
  }
  .hero-layout .services-title {
    font-size: 28px;
  }
  .hero-layout .services-description {
    font-size: 15px;
    padding: 0 12px;
  }
}

/* Partners cards layout styles */
.partners-section {
  padding: 96px 0;
  text-align: center;
}
.partners-section .section-tagline {
  display: block;
  font-size: 14px;
  color: rgb(0, 136, 204);
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}
.partners-section .section-title {
  font-size: 48px;
  margin: 0 auto 16px;
  max-width: 900px;
  font-weight: 700;
  line-height: 1;
}
.partners-section .section-title .gradient-text {
  background: linear-gradient(100.47deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.partners-section .section-description {
  color: #6b7a89;
  max-width: 672px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 28px;
}
.partners-section .partner-column {
  /* columns should stretch to same height and use internal padding like Bootstrap */
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  align-items: stretch;
  flex: 0 0 auto;
  max-width: 430px; /* narrower cards to match design */
  width: 100%;
}
.partners-section .partner-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* ensure card fills column height so both cards match */
}
.partners-section .card-figure {
  height: 460px;
  width: 100%;
  max-width: 430px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.partners-section .partner-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.partners-section .partner-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00c7d9, #008dbc);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) inset;
}
.partners-section .partner-initials {
  color: #fff;
  font-weight: 700;
  font-size: 28px;
}
.partners-section .card-body {
  padding: 32px 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.partners-section .partner-name {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}
.partners-section .partner-title {
  color: #00a8c7;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
}
.partners-section .partner-description {
  color: #6b7a89;
  font-size: 14px;
  line-height: 1.7;
  margin-top: 12px;
}
.partners-section .partner-tags {
  margin-top: auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.partners-section .tag-pill {
  background: #eaf9fb;
  color: #00a8c7;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 12px;
}
@media (max-width: 900px) {
  .partners-section .card-figure {
    height: 260px;
  }
  .partners-section .partner-column {
    max-width: 420px;
  }
}
@media (max-width: 520px) {
  .partners-section .partner-column {
    max-width: 100%;
  }
  .partners-section .card-figure {
    height: 220px;
  }
}

/* Expert Teams layout: rely on .partners-section styles so cards match leadership layout */
.expert-teams-section {
  /* Intentionally minimal — use .partners-section for layout and card styles */
  padding: 96px 0;
  text-align: center;
  /* Make cards smaller and enforce 4-per-row on large screens while keeping typography unchanged */
  /* Default: 4 columns (25%) */
  /* Medium screens: 3 columns */
  /* Small screens: 2 columns */
  /* Extra-small: full width */
}
.expert-teams-section .section-tagline {
  display: block;
  font-size: 14px;
  color: rgb(0, 136, 204);
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}
.expert-teams-section .section-title {
  font-size: 48px;
  margin: 0 auto 16px;
  max-width: 900px;
  font-weight: 700;
  line-height: 1;
}
.expert-teams-section .section-title .gradient-text {
  background: linear-gradient(100.47deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.expert-teams-section .section-description {
  color: #6b7a89;
  max-width: 672px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 28px;
}
.expert-teams-section .partner-column {
  box-sizing: border-box;
  padding-left: 12px;
  padding-right: 12px;
  flex: 0 0 25%;
  max-width: 25%;
  display: block;
}
.expert-teams-section .partner-card {
  width: 100%;
  max-width: 284px;
  display: flex;
  flex-direction: column;
}
.expert-teams-section .card-figure {
  height: 284px; /* smaller figure */
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
}
.expert-teams-section .card-body {
  padding: 20px;
  min-height: 120px;
}
@media (max-width: 991px) {
  .expert-teams-section .partner-column {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
  .expert-teams-section .card-figure {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .expert-teams-section .partner-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .expert-teams-section .card-figure {
    height: 160px;
  }
}
@media (max-width: 479px) {
  .expert-teams-section .partner-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .expert-teams-section .card-figure {
    height: 140px;
  }
}

/* Specialization cards (dark section) */
.specialization-section {
  padding: 80px 0;
  background: #1A2332;
}
.specialization-section .section-tagline {
  text-align: center;
  display: block;
  font-size: 14px;
  color: #00D9D9;
  font-weight: 700;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
}
.specialization-section .section-title {
  text-align: center;
  font-size: 48px;
  margin: 0 auto 16px;
  max-width: 900px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.specialization-section .section-title .gradient-text {
  background: linear-gradient(100.47deg, #00D9D9 0%, #0088CC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.specialization-section .section-description {
  text-align: center;
  color: rgba(255, 255, 255, 0.6980392157);
  max-width: 672px;
  margin: 0 auto 64px;
  font-size: 18px;
  line-height: 28px;
}
.specialization-section .specialization-grid {
  row-gap: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.specialization-section .specialization-column {
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.specialization-section .special-card {
  /* Use a darker translucent card and remove inset white shadows */
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: 32px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1 1 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.specialization-section .special-card-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex: 1 1 auto;
}
.specialization-section .special-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.specialization-section .special-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.specialization-section .special-title {
  color: #fff;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 700;
}
.specialization-section .special-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin-bottom: 16px;
}
.specialization-section .special-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.specialization-section .tag-pill {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
}
@media (max-width: 991px) {
  .specialization-section .special-card {
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  .specialization-section .special-card {
    min-height: 160px;
  }
}
@media (max-width: 991px) {
  .specialization-section .specialization-column {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .specialization-section .specialization-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Languages layout */
.languages-section {
  padding: 80px 0;
  text-align: center;
}
.languages-section .section-title {
  font-size: 30px;
  line-height: 36px;
  margin: 0 auto 16px;
  font-weight: 800;
  color: #0b2a3a;
}
.languages-section .section-description {
  color: #6b7a89;
  max-width: 900px;
  margin: 0 auto 48px;
}
.languages-section .languages-list {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 18px;
}
.languages-section .lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F0F4F8;
  padding: 16px 20px;
  border-radius: 999px;
}
.languages-section .lang-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 24px;
  border-radius: 10px;
  color: #0b2a3a;
  font-weight: 500;
}
.languages-section .lang-label {
  color: #0b2a3a;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 767px) {
  .languages-section .languages-list {
    gap: 10px;
  }
  .languages-section .lang-pill {
    padding: 8px 12px;
  }
  .languages-section .lang-code {
    min-width: 32px;
    height: 32px;
  }
}
