@charset "UTF-8";
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-3 > * + * {
  margin-top: 0.75rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-20 > * + * {
  margin-top: 5rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.p-0 {
  padding: 0;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.italic {
  font-style: italic;
}

.text-white {
  color: #ffffff;
}

.text-primary {
  color: #0B3D91;
}

.text-gray-100 {
  color: #F3F3F5;
}

.text-gray-200 {
  color: #E9EBEF;
}

.text-gray-400 {
  color: #9CA3AF;
}

.text-gray-600 {
  color: #4B5563;
}

.text-gray-700 {
  color: #374151;
}

.text-gray-900 {
  color: #111827;
}

.bg-white {
  background-color: #ffffff;
}

.bg-primary {
  background-color: #0B3D91;
}

.bg-muted {
  background-color: #F5F7FA;
}

.bg-gray-100 {
  background-color: #F3F3F5;
}

.bg-gray-200 {
  background-color: #E9EBEF;
}

.bg-gray-900 {
  background-color: #111827;
}

.bg-\[#F5F7FA\] {
  background-color: #F5F7FA;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.overflow-hidden {
  overflow: hidden;
}

.aspect-video {
  aspect-ratio: 16/9;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-lg {
  border-radius: 0.625rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-\[60vh\] {
  height: 60vh;
}

.object-cover {
  object-fit: cover;
}

.w-16 {
  width: 4rem;
}

.h-16 {
  height: 4rem;
}

.w-12 {
  width: 3rem;
}

.h-12 {
  height: 3rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-5xl {
  max-width: 64rem;
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .md\:text-6xl {
    font-size: 3.75rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
  }
}
.container-custom {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-narrow {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .max-w-7xl {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 1024px) {
  .section-py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.hover\:border-primary:hover {
  border-color: #0B3D91;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: rgba(0, 0, 0, 0.1);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  font-family: "Outfit", "Inter", system-ui, -apple-system, sans-serif;
}

body {
  background-color: #ffffff;
  color: #030213;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.max-w-7xl {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
h1, .text-5xl, .text-6xl {
  font-weight: 500;
  line-height: 1.2;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

h2, .text-4xl {
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.3;
}

h3, .text-xl, .text-2xl {
  font-weight: 500;
  line-height: 1.5;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

p, .text-base {
  font-size: 1rem;
  line-height: 1.6;
}

.text-gray-100 {
  color: #F3F4F6;
}

.text-gray-200 {
  color: #E5E7EB;
}

.text-gray-400 {
  color: #9CA3AF;
}

.text-gray-600 {
  color: #4B5563;
}

.text-gray-700 {
  color: #374151;
}

.text-white {
  color: #ffffff;
}

.text-center {
  text-align: center;
}

@media (max-width: 768px) {
  .text-5xl {
    font-size: 2.25rem;
  }
  .text-6xl {
    font-size: 2.5rem;
  }
}
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #E9EBEF;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
.site-header .header-inner {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B3D91;
}
.site-header .logo .logo-text span {
  color: #374151;
}
.site-header .logo img {
  width: auto;
}
.site-header .desktop-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .site-header .desktop-nav {
    display: flex;
  }
}
.site-header .desktop-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.site-header .desktop-nav .nav-list li a {
  font-size: 0.875rem;
  color: #374151;
  transition: color 0.3s ease;
}
.site-header .desktop-nav .nav-list li a:hover {
  color: #0B3D91;
}
.site-header .desktop-nav .nav-list .current-menu-item a {
  color: #0B3D91;
  font-weight: 500;
}
.site-header .mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
@media (min-width: 768px) {
  .site-header .mobile-menu-toggle {
    display: none;
  }
}
.site-header .mobile-menu-toggle.active .icon-menu {
  display: none;
}
.site-header .mobile-menu-toggle.active .icon-close {
  display: block;
}
.site-header .mobile-menu-toggle .icon-menu {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' x2='20' y1='12' y2='12'/%3E%3Cline x1='4' x2='20' y1='6' y2='6'/%3E%3Cline x1='4' x2='20' y1='18' y2='18'/%3E%3C/svg%3E") no-repeat center;
}
.site-header .mobile-menu-toggle .icon-close {
  display: none;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23374151' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6 6 18'/%3E%3Cpath d='m6 6 12 12'/%3E%3C/svg%3E") no-repeat center;
}
.site-header .mobile-nav {
  display: none;
  padding: 1rem 1.5rem;
  border-top: 1px solid #E9EBEF;
  background-color: #ffffff;
}
.site-header .mobile-nav.active {
  display: block;
}
.site-header .mobile-nav .mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header .mobile-nav .mobile-nav-list li a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  color: #374151;
  transition: color 0.3s ease;
}
.site-header .mobile-nav .mobile-nav-list li a:hover {
  color: #0B3D91;
}
.site-header .mobile-nav .mobile-cta {
  display: block;
  margin-top: 1rem;
  width: 100%;
}

.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding-top: 5rem;
  font-family: "Outfit", "Inter", system-ui, -apple-system, sans-serif;
}
.site-footer .container-custom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer .footer-main {
  padding-bottom: 3rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 3rem;
}
@media (min-width: 640px) {
  .site-footer .footer-grid {
    grid-template-cols: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-cols: 1.5fr 1fr 1fr 1.2fr;
  }
}
.site-footer .footer-col .footer-logo img {
  width: auto;
}
.site-footer .footer-col .footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #ffffff;
  position: relative;
}
.site-footer .footer-col .footer-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #0B3D91;
  margin-top: 0.75rem;
}
.site-footer .footer-col .footer-desc {
  color: #9CA3AF;
  line-height: 1.7;
  font-size: 0.9375rem;
}
.site-footer .footer-col .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-col .footer-links li {
  margin-bottom: 0.875rem;
}
.site-footer .footer-col .footer-links li a {
  color: #9CA3AF;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.site-footer .footer-col .footer-links li a:hover {
  color: #0B3D91;
  padding-left: 5px;
}
.site-footer .footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .footer-contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: #9CA3AF;
  font-size: 0.9375rem;
}
.site-footer .footer-contact-info .contact-item i {
  color: #0B3D91;
  flex-shrink: 0;
  margin-top: 3px;
}
.site-footer .footer-contact-info .contact-item a {
  color: #9CA3AF;
  transition: color 0.3s ease;
}
.site-footer .footer-contact-info .contact-item a:hover {
  color: #0B3D91;
}
.site-footer .footer-contact-info .contact-item .phone-wrap {
  display: flex;
  flex-direction: column;
}
.site-footer .footer-contact-info .contact-item .phone-wrap .phone-note {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 2px;
}
.site-footer .footer-newsletter {
  margin-top: 4rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer .footer-newsletter .newsletter-content {
  max-width: 600px;
}
.site-footer .footer-newsletter .newsletter-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.site-footer .footer-newsletter .newsletter-desc {
  color: #9CA3AF;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-newsletter .newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.site-footer .footer-newsletter .newsletter-form input {
  flex-grow: 1;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.9375rem;
}
.site-footer .footer-newsletter .newsletter-form input:focus {
  outline: none;
  border-color: #0B3D91;
}
.site-footer .footer-newsletter .newsletter-form .btn {
  padding: 0 1.5rem;
  font-size: 0.875rem;
}
.site-footer .footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .site-footer .footer-legal {
    flex-direction: row;
  }
}
.site-footer .footer-legal .legal-links {
  display: flex;
  gap: 2rem;
}
.site-footer .footer-legal .legal-links a {
  color: #6B7280;
  font-size: 0.8125rem;
  transition: color 0.3s ease;
}
.site-footer .footer-legal .legal-links a:hover {
  color: #ffffff;
}
.site-footer .footer-legal .prr-badge {
  max-height: 320px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.site-footer .footer-legal .prr-badge a {
  display: inline-block;
  transition: opacity 0.3s ease;
}
.site-footer .footer-legal .prr-badge a:hover {
  opacity: 0.85;
}
.site-footer .footer-legal .prr-badge img {
  height: 32px;
  width: auto;
  display: block;
}
.site-footer .footer-bar {
  background-color: #111111;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer .footer-bar .copyright {
  text-align: center;
  color: #4B5563;
  font-size: 0.8125rem;
  margin: 0;
}

.btn-primary {
  display: inline-block;
  background-color: #0B3D91;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}
.btn-primary:hover {
  background-color: #0a3580;
  color: #ffffff;
}

.btn-secondary {
  display: inline-block;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #ffffff;
  color: #0B3D91;
}

.btn-primary-alt {
  display: inline-block;
  background-color: #ffffff;
  color: #0B3D91;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}
.btn-primary-alt:hover {
  background-color: #F3F3F5;
  color: #0B3D91;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
  color: #0B3D91;
  font-weight: 500;
}
.link-arrow:hover {
  gap: 0.75rem;
}
.link-arrow .arrow {
  font-size: 1rem;
}

.btn-outline {
  display: inline-block;
  border: 2px solid #0B3D91;
  color: #0B3D91;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background-color: #0B3D91;
  color: #ffffff;
}

.btn-white {
  display: inline-block;
  background-color: #ffffff;
  color: #0B3D91;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  transition: background-color 0.3s ease;
}
.btn-white:hover {
  background-color: #F3F3F5;
  color: #0B3D91;
}

.home-page .container-custom {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.home-page .container-narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.home-page .section-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
.home-page .section-subtitle {
  font-size: 1.125rem;
  color: #4B5563;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.home-page .home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: #111;
  overflow: hidden;
}
.home-page .home-hero .hero-bg-container {
  position: absolute;
  inset: 0;
}
.home-page .home-hero .hero-bg-container .hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.home-page .home-hero .hero-bg-container .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 61, 145, 0.6);
}
.home-page .home-hero .hero-content {
  color: #ffffff;
}
.home-page .home-hero .hero-content .hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.home-page .home-hero .hero-content .hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.25rem);
  opacity: 0.9;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.home-page .home-hero .hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.home-page .services-grid .service-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  border: 1px solid #E9EBEF;
  transition: all 0.3s ease;
}
.home-page .services-grid .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
  border-color: rgba(11, 61, 145, 0.2);
}
.home-page .services-grid .service-card .service-icon-wrapper {
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgba(11, 61, 145, 0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.home-page .services-grid .service-card .service-icon-wrapper .icon-lucide {
  width: 1.75rem;
  height: 1.75rem;
  color: #0B3D91;
}
.home-page .services-grid .service-card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #111827;
}
.home-page .services-grid .service-card .card-desc {
  color: #4B5563;
  line-height: 1.5;
  font-size: 0.9375rem;
}
.home-page .about-text-content .about-description {
  font-size: 1.0625rem;
}
.home-page .about-text-content .point-item .icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: #0B3D91;
  flex-shrink: 0;
}
.home-page .about-text-content .point-item .point-text {
  font-size: 1rem;
  color: #374151;
}
.home-page .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0B3D91;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.home-page .link-arrow:hover {
  gap: 0.75rem;
}
.home-page .link-arrow .icon-arrow {
  width: 1rem;
  height: 1rem;
}
.home-page .sector-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  border: 1px solid #E9EBEF;
  transition: all 0.3s ease;
}
.home-page .sector-card:hover {
  border-color: #0B3D91;
  background-color: rgba(11, 61, 145, 0.02);
}
.home-page .sector-card .sector-icon-wrapper {
  margin-bottom: 0.75rem;
}
.home-page .sector-card .sector-icon-wrapper .icon-lucide {
  width: 1.5rem;
  height: 1.5rem;
  color: #0B3D91;
}
.home-page .sector-card .sector-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}
.home-page .project-card-link {
  text-decoration: none;
  display: block;
}
.home-page .project-card-link .project-card {
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.home-page .project-card-link .project-card:hover {
  transform: translateY(-5px);
}
.home-page .project-card-link .project-thumb-container {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.home-page .project-card-link .project-thumb-container .project-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.home-page .project-card-link .project-thumb-container .project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.home-page .project-card-link .project-thumb-container .project-overlay .project-details {
  color: #ffffff;
}
.home-page .project-card-link .project-thumb-container .project-overlay .project-details .project-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.home-page .project-card-link .project-thumb-container .project-overlay .project-details .project-techs {
  font-size: 0.875rem;
  opacity: 0.8;
}
.home-page .project-card-link:hover .project-img {
  transform: scale(1.05);
}
.home-page .project-card-link:hover .project-overlay {
  opacity: 1;
}
.home-page .project-card-link .project-info-minimal {
  padding: 1rem 1.5rem;
}
.home-page .project-card-link .project-info-minimal .info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.25rem;
}
.home-page .project-card-link .project-info-minimal .info-techs {
  font-size: 0.875rem;
  color: #4B5563;
}
.home-page .tech-brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9CA3AF;
  transition: all 0.3s ease;
  letter-spacing: -0.02em;
}
.home-page .tech-brand-name:hover {
  color: #0B3D91;
  transform: scale(1.1);
}
.home-page .section-cta .cta-title {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.home-page .section-cta .cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.btn-outline-white {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.75rem 1.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-white:hover {
  background-color: #ffffff;
  color: #0B3D91;
}

.btn-outline-primary {
  border: 2px solid #0B3D91;
  color: #0B3D91;
  padding: 0.75rem 1.75rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-outline-primary:hover {
  background-color: #0B3D91;
  color: #ffffff;
}

.services-page .container-custom, .services-page .container-wide {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.services-page .container-medium {
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.services-page .container-narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.services-page .service-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  overflow: hidden;
}
.services-page .service-hero .hero-bg-container {
  position: absolute;
  inset: 0;
}
.services-page .service-hero .hero-bg-container .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-page .service-hero .hero-bg-container .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 61, 145, 0.7);
}
.services-page .service-hero .hero-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  text-align: center;
}
.services-page .service-hero .hero-content .hero-title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.services-page .service-hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.services-page .intro-description {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
}
.services-page .service-detail-item .service-icon-wrapper {
  width: 4rem;
  height: 4rem;
  background-color: rgba(11, 61, 145, 0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.services-page .service-detail-item .service-icon-wrapper .icon-lucide {
  width: 2rem;
  height: 2rem;
  color: #0B3D91;
}
.services-page .service-detail-item .service-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.services-page .service-detail-item .service-intro {
  color: #374151;
  line-height: 1.6;
}
.services-page .service-detail-item .service-includes-box {
  background-color: #F5F7FA;
  padding: 2rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}
.services-page .service-detail-item .service-includes-box .includes-title {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #111827;
}
.services-page .service-detail-item .service-includes-box .includes-title .icon-check {
  width: 1.25rem;
  height: 1.25rem;
  color: #0B3D91;
}
.services-page .service-detail-item .service-includes-box .includes-list {
  list-style: none;
  padding: 0;
}
.services-page .service-detail-item .service-includes-box .includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #374151;
}
.services-page .service-detail-item .service-includes-box .includes-list li .bullet {
  color: #0B3D91;
  font-weight: bold;
}
.services-page .service-detail-item .service-conclusion {
  color: #374151;
  font-style: italic;
  margin-top: 1.5rem;
}
.services-page .service-detail-item .service-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
.services-page .service-detail-item .service-divider {
  margin-top: 4rem;
  border-bottom: 1px solid #E9EBEF;
}
.services-page .section-differentiators .diff-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services-page .section-differentiators .diff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.services-page .section-differentiators .diff-card .card-icon-wrapper {
  margin-bottom: 1rem;
}
.services-page .section-differentiators .diff-card .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111827;
}
.services-page .section-differentiators .diff-card .card-desc {
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
}
.services-page .section-cta .cta-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  margin-bottom: 1rem;
}
.services-page .section-cta .cta-subtitle {
  margin-bottom: 2rem;
  opacity: 0.9;
}

.projects-page {
  background-color: #ffffff;
}
.projects-page .container-custom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.projects-page .container-narrow {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.projects-page .projects-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #030213;
  overflow: hidden;
}
.projects-page .projects-hero .hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.projects-page .projects-hero .hero-bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.projects-page .projects-hero .hero-bg-container .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(11, 61, 145, 0.8), rgba(3, 2, 19, 0.7));
}
.projects-page .projects-hero .hero-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
}
.projects-page .projects-hero .hero-content .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.projects-page .projects-hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}
.projects-page .section-intro .intro-description {
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}
.projects-page .section-filters {
  background-color: #f8fafc;
  border-top: 1px solid #E9EBEF;
  border-bottom: 1px solid #E9EBEF;
}
.projects-page .section-filters .filter-btn {
  background: #ffffff;
  border: 1px solid #E9EBEF;
  padding: 0.75rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #4B5563;
  transition: all 0.3s ease;
  cursor: pointer;
}
.projects-page .section-filters .filter-btn:hover, .projects-page .section-filters .filter-btn.active {
  background-color: #0B3D91;
  color: #ffffff;
  border-color: #0B3D91;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.projects-page .section-sectors .sector-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 80px;
  transition: all 0.3s ease;
  border: 1px solid #E9EBEF;
}
.projects-page .section-sectors .sector-badge:hover {
  background-color: #0B3D91;
  color: #ffffff;
  border-color: #0B3D91;
  transform: translateY(-4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.projects-page .section-final-cta {
  background-color: #0B3D91;
}
.projects-page .section-final-cta .btn-white-action {
  display: inline-block;
  background-color: #ffffff;
  color: #0B3D91;
  padding: 1rem 2.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s ease;
}
.projects-page .section-final-cta .btn-white-action:hover {
  background-color: #F3F3F5;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.projects-page .section-projects-grid .project-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #E9EBEF;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.projects-page .section-projects-grid .project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #0B3D91;
}
.projects-page .section-projects-grid .project-card .project-card-image-box {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.projects-page .section-projects-grid .project-card .project-card-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.projects-page .section-projects-grid .project-card .project-card-image-box .hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 61, 145, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}
.projects-page .section-projects-grid .project-card .project-card-image-box .hover-overlay .overlay-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.projects-page .section-projects-grid .project-card .project-card-image-box .hover-overlay .overlay-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.projects-page .section-projects-grid .project-card .project-card-image-box .hover-overlay .overlay-techs {
  font-size: 0.875rem;
  opacity: 0.8;
}
.projects-page .section-projects-grid .project-card:hover .project-card-image-box img {
  transform: scale(1.1);
}
.projects-page .section-projects-grid .project-card:hover .project-card-image-box .hover-overlay {
  opacity: 1;
}
.projects-page .section-projects-grid .project-card .project-card-content {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.projects-page .section-projects-grid .project-card .project-card-content .category-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0B3D91;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.projects-page .section-projects-grid .project-card .project-card-content .project-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.projects-page .section-projects-grid .project-card .project-card-content .project-techs {
  font-size: 1rem;
  color: #4B5563;
  margin-bottom: 2rem;
}
.projects-page .section-projects-grid .project-card .project-card-content .project-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0B3D91;
  transition: all 0.3s ease;
}
.projects-page .section-projects-grid .project-card .project-card-content .project-link:hover {
  gap: 1.25rem;
  text-decoration: none;
}

.project-detail-page {
  background-color: #ffffff;
}
.project-detail-page .container-custom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.project-detail-page .container-narrow {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.project-detail-page .project-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #030213;
  overflow: hidden;
  margin-bottom: 0;
}
.project-detail-page .project-hero .hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.project-detail-page .project-hero .hero-bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 10s ease-out;
}
.project-detail-page .project-hero .hero-bg-container .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.9) 0%, rgba(3, 2, 19, 0.6) 100%);
}
.project-detail-page .project-hero .hero-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
}
.project-detail-page .project-hero .hero-content .project-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.project-detail-page .project-hero .hero-content .project-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.project-detail-page .project-hero .hero-content .hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.project-detail-page .project-hero:hover .hero-bg-container img {
  transform: scale(1.1);
}
.project-detail-page .back-nav {
  background-color: #F3F3F5;
  padding: 1.25rem 0;
  border-bottom: 1px solid #E9EBEF;
}
.project-detail-page .back-nav .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #4B5563;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}
.project-detail-page .back-nav .back-link:hover {
  color: #0B3D91;
  transform: translateX(-4px);
}
.project-detail-page .project-body {
  padding: 6rem 0;
}
.project-detail-page .project-grid-layout {
  display: grid;
  grid-template-cols: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .project-detail-page .project-grid-layout {
    grid-template-cols: 1.8fr 1fr;
  }
}
.project-detail-page .detail-section {
  margin-bottom: 5rem;
}
.project-detail-page .detail-section:last-child {
  margin-bottom: 0;
}
.project-detail-page .detail-section .section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #0B3D91;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: block;
}
.project-detail-page .detail-section .section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
  position: relative;
}
.project-detail-page .detail-section .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #0B3D91;
  margin-top: 0.75rem;
  border-radius: 2px;
}
.project-detail-page .detail-section .section-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
}
.project-detail-page .detail-section .section-content p {
  margin-bottom: 1.5rem;
}
.project-detail-page .project-sidebar .sidebar-widget {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #E9EBEF;
  margin-bottom: 2.5rem;
}
.project-detail-page .project-sidebar .sidebar-widget .widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.project-detail-page .solution-box {
  background-color: #F8FAFC;
  padding: 3rem;
  border-radius: 1rem;
  border-left: 6px solid #0B3D91;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.project-detail-page .solution-box .solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-detail-page .solution-box .solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(233, 235, 239, 0.5);
  font-size: 1.05rem;
  color: #374151;
}
.project-detail-page .solution-box .solution-list li:last-child {
  border-bottom: none;
}
.project-detail-page .solution-box .solution-list li .icon-check {
  width: 1.5rem;
  height: 1.5rem;
  color: #0B3D91;
  flex-shrink: 0;
}
.project-detail-page .result-card {
  background: linear-gradient(135deg, #0B3D91 0%, #06214d 100%);
  padding: 3rem;
  border-radius: 1rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.project-detail-page .result-card::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  font-family: serif;
  opacity: 0.1;
  line-height: 1;
}
.project-detail-page .result-card .result-text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  font-style: italic;
  position: relative;
  z-index: 2;
}
.project-detail-page .tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.project-detail-page .tech-badges .badge {
  background-color: #F3F3F5;
  color: #0B3D91;
  padding: 0.6rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid #E9EBEF;
  transition: all 0.3s ease;
}
.project-detail-page .tech-badges .badge:hover {
  background-color: #0B3D91;
  color: #ffffff;
  border-color: #0B3D91;
  transform: translateY(-2px);
}
.project-detail-page .gallery-section {
  padding: 6rem 0;
  background-color: #F3F3F5;
  border-top: 1px solid #E9EBEF;
}
.project-detail-page .gallery-section .section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.project-detail-page .gallery-section .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}
.project-detail-page .gallery-section .gallery-wrap {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 640px) {
  .project-detail-page .gallery-section .gallery-wrap {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (min-width: 900px) {
  .project-detail-page .gallery-section .gallery-wrap {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
.project-detail-page .gallery-section .gallery-figure {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  margin: 0;
  cursor: pointer;
}
.project-detail-page .gallery-section .gallery-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-detail-page .gallery-section .gallery-figure .gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 61, 145, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.project-detail-page .gallery-section .gallery-figure:hover img {
  transform: scale(1.08);
}
.project-detail-page .gallery-section .gallery-figure:hover .gallery-overlay {
  opacity: 1;
}
.project-detail-page .final-cta {
  margin: 6rem 0;
}
.project-detail-page .final-cta .cta-inner {
  background: #ffffff;
  padding: 4rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid #E9EBEF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}
.project-detail-page .final-cta .cta-inner h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #111827;
}
.project-detail-page .final-cta .cta-inner p {
  font-size: 1.25rem;
  color: #4B5563;
  margin-bottom: 2.5rem;
}
.project-detail-page .final-cta .cta-inner .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .project-detail-page .final-cta .cta-inner .cta-buttons {
    flex-direction: row;
  }
}
.project-detail-page .final-cta .cta-inner .cta-buttons .btn {
  min-width: 240px;
}

.nts-lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(5px);
}
.nts-lightbox.active {
  display: flex;
}
.nts-lightbox .nts-lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
  position: relative;
}
.nts-lightbox .nts-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 0.5rem;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  animation: lightboxZoom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.nts-lightbox .nts-lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: 3rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s ease;
}
.nts-lightbox .nts-lightbox-close:hover {
  transform: scale(1.2);
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.company-page .container-custom {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.company-page .container-narrow {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.company-page .section-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  text-align: center;
}
.company-page .section-subtitle {
  font-size: 1.125rem;
  color: #4B5563;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.company-page .company-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  overflow: hidden;
}
.company-page .company-hero .hero-bg-container {
  position: absolute;
  inset: 0;
}
.company-page .company-hero .hero-bg-container .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-page .company-hero .hero-bg-container .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 61, 145, 0.7);
}
.company-page .company-hero .hero-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  text-align: center;
}
.company-page .company-hero .hero-content .hero-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.company-page .company-hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}
.company-page .area-card {
  transition: all 0.3s ease;
}
.company-page .area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #0B3D91;
}
.company-page .section-mission .mission-text {
  font-weight: 500;
}
.company-page .work-card {
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.company-page .work-card:hover {
  background-color: #ffffff;
  border-color: rgba(11, 61, 145, 0.1);
}
.company-page .partner-name {
  letter-spacing: -0.02em;
}
.company-page .partner-name:hover {
  transform: scale(1.1);
}
.company-page .location-info-box {
  background-color: #F8FAFC;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #E9EBEF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.company-page .location-info-box .info-item .info-icon-wrapper {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.company-page .location-info-box .info-item .info-label {
  color: #0B3D91;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.company-page .location-info-box .info-item .info-address {
  font-size: 1rem;
  font-weight: 500;
}
.company-page .location-image-wrapper {
  border: 1px solid #E9EBEF;
}
.company-page .info-icon-wrapper {
  flex-shrink: 0;
}

.contact-page {
  background-color: #ffffff;
}
.contact-page .container-custom {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-page .container-narrow {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-page .contact-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #030213;
  overflow: hidden;
}
.contact-page .contact-hero .hero-bg-container {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.contact-page .contact-hero .hero-bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.contact-page .contact-hero .hero-bg-container .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.9) 0%, rgba(3, 2, 19, 0.7) 100%);
}
.contact-page .contact-hero .hero-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  text-align: center;
  max-width: 800px;
}
.contact-page .contact-hero .hero-content .hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.contact-page .contact-hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.contact-page .contact-section-body {
  padding: 6rem 0;
  background-color: #F3F3F5;
}
.contact-page .form-container-full {
  max-width: 900px;
  margin: 0 auto;
}
.contact-page .form-container {
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #E9EBEF;
}
.contact-page .form-container .wpcf7-form br {
  display: none;
}
.contact-page .form-container .wpcf7-p-fix {
  display: block;
}
.contact-page .form-container .form-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 3rem;
}
.contact-page .form-container .form-group {
  margin-bottom: 1.5rem;
}
.contact-page .form-container .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.contact-page .form-container .form-group input, .contact-page .form-container .form-group textarea, .contact-page .form-container .form-group select,
.contact-page .form-container .form-group .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-acceptance) {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #111827;
  transition: all 0.3s ease;
  background-color: #F8FAFC;
}
.contact-page .form-container .form-group input:focus, .contact-page .form-container .form-group textarea:focus, .contact-page .form-container .form-group select:focus,
.contact-page .form-container .form-group .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-acceptance):focus {
  background-color: #ffffff;
  border-color: #0B3D91;
  box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
  outline: none;
}
.contact-page .form-container .form-group input::placeholder, .contact-page .form-container .form-group textarea::placeholder, .contact-page .form-container .form-group select::placeholder,
.contact-page .form-container .form-group .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-acceptance)::placeholder {
  color: #9CA3AF;
}
.contact-page .form-container .form-group .wpcf7-form-control-wrap {
  display: block;
}
.contact-page .form-container .privacy-check {
  margin: 2rem 0;
}
.contact-page .form-container .privacy-check .wpcf7-list-item {
  margin: 0;
}
.contact-page .form-container .privacy-check label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #4B5563;
  line-height: 1.5;
  cursor: pointer;
}
.contact-page .form-container .privacy-check label input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-page .form-container .submit-btn {
  width: 100%;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
}
.contact-page .sidebar-info-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .contact-page .sidebar-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.contact-page .info-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #E9EBEF;
}
.contact-page .info-card .card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2rem;
}
.contact-page .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-page .contact-item:last-child {
  margin-bottom: 0;
}
.contact-page .contact-item .icon-wrapper {
  width: 3rem;
  height: 3rem;
  background-color: rgba(11, 61, 145, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0B3D91;
  flex-shrink: 0;
}
.contact-page .contact-item .item-content h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6B7280;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.contact-page .contact-item .item-content p, .contact-page .contact-item .item-content a {
  font-size: 1.125rem;
  color: #111827;
  font-weight: 600;
  line-height: 1.5;
}
.contact-page .contact-item .item-content a:hover {
  color: #0B3D91;
}
.contact-page .whatsapp-promo {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  padding: 3rem;
  border-radius: 1rem;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.contact-page .whatsapp-promo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-page .whatsapp-promo p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.contact-page .whatsapp-promo .btn-whatsapp {
  background-color: #ffffff;
  color: #128C7E;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.contact-page .whatsapp-promo .btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  background-color: #F3F3F5;
}
.contact-page .section-map-iframe {
  line-height: 0;
}
.contact-page .section-map-iframe iframe {
  filter: grayscale(0.2) contrast(1.1);
  transition: filter 0.3s ease;
}
.contact-page .section-map-iframe iframe:hover {
  filter: grayscale(0);
}

.standard-page-hero {
  background-color: #030213;
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.standard-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 61, 145, 0.2) 0%, #030213 100%);
  z-index: 1;
}
.standard-page-hero .container-custom {
  position: relative;
  z-index: 10;
}
.standard-page-hero .page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.standard-page-hero .page-excerpt {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.standard-page-content {
  background-color: #ffffff;
}
.standard-page-content .content-wrapper {
  color: #1F2937;
  line-height: 1.8;
  font-size: 1.125rem;
}
.standard-page-content .content-wrapper h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin: 3.5rem 0 1.5rem;
}
.standard-page-content .content-wrapper h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
  margin: 2.5rem 0 1.25rem;
}
.standard-page-content .content-wrapper h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 2rem 0 1rem;
}
.standard-page-content .content-wrapper p {
  margin-bottom: 2rem;
}
.standard-page-content .content-wrapper ul, .standard-page-content .content-wrapper ol {
  margin: 0 0 2rem 1.5rem;
}
.standard-page-content .content-wrapper ul li, .standard-page-content .content-wrapper ol li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}
.standard-page-content .content-wrapper ul {
  list-style-type: disc;
}
.standard-page-content .content-wrapper ul li::marker {
  color: #0B3D91;
}
.standard-page-content .content-wrapper ol {
  list-style-type: decimal;
}
.standard-page-content .content-wrapper ol li::marker {
  color: #0B3D91;
  font-weight: 700;
}
.standard-page-content .content-wrapper blockquote {
  background-color: #F3F3F5;
  padding: 2.5rem;
  border-left: 4px solid #0B3D91;
  border-radius: 0.5rem;
  margin: 3rem 0;
  font-style: italic;
}
.standard-page-content .content-wrapper blockquote p {
  margin-bottom: 0;
  font-size: 1.25rem;
  color: #374151;
}
.standard-page-content .content-wrapper figure {
  margin: 3rem 0;
}
.standard-page-content .content-wrapper figure img {
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.standard-page-content .content-wrapper figure figcaption {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6B7280;
  font-style: italic;
}
.standard-page-content .content-wrapper a {
  color: #0B3D91;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.3s ease;
}
.standard-page-content .content-wrapper a:hover {
  color: rgb(5.6057692308, 31.0865384615, 73.8942307692);
}
.standard-page-content .content-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  font-size: 1rem;
}
.standard-page-content .content-wrapper table th, .standard-page-content .content-wrapper table td {
  padding: 1rem;
  border: 1px solid #E9EBEF;
  text-align: left;
}
.standard-page-content .content-wrapper table th {
  background-color: #F3F3F5;
  font-weight: 700;
  color: #111827;
}

/*# sourceMappingURL=main.css.map */
