*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background-color: white;
  color: #212529;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

body {
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 1.953125rem;
}

h2 {
  font-size: 1.5625rem;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #6a7075;
}

.navbar {
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 300ms ease-in-out;
  color: #004aad;
}
.navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
@media (max-width: 768px) {
  .navbar__container {
    padding: 0 16px;
  }
}
.navbar__logo {
  font-size: 1.5625rem;
  font-weight: 700;
  color: #004aad;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1001;
}
.navbar__logo .logo__mark {
  display: block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  border-radius: 4px;
  transition: transform 150ms ease-in-out;
}
.navbar__logo .logo__mark:hover {
  transform: rotate(15deg);
}
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 768px) {
  .navbar__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.navbar__toggle .toggle__icon,
.navbar__toggle .toggle__icon::before,
.navbar__toggle .toggle__icon::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #004aad;
  border-radius: 2px;
  transition: all 150ms ease-in-out;
}
.navbar__toggle .toggle__icon {
  position: relative;
}
.navbar__toggle .toggle__icon::before, .navbar__toggle .toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.navbar__toggle .toggle__icon::before {
  transform: translateY(-6px);
}
.navbar__toggle .toggle__icon::after {
  transform: translateY(6px);
}
.navbar__toggle[aria-expanded=true] .toggle__icon {
  background: transparent;
}
.navbar__toggle[aria-expanded=true] .toggle__icon::before {
  transform: rotate(45deg);
}
.navbar__toggle[aria-expanded=true] .toggle__icon::after {
  transform: rotate(-45deg);
}
.navbar__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .navbar__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 300ms ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    pointer-events: none;
    backdrop-filter: blur(5px);
    height: 600px;
  }
  .navbar__nav[aria-expanded=true] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.navbar .nav__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
@media (max-width: 768px) {
  .navbar .nav__list {
    flex-direction: column;
    width: 100%;
  }
}
.navbar .nav__item {
  position: relative;
}
@media (min-width: 769px) {
  .navbar .nav__item--dropdown:hover .dropdown__menu, .navbar .nav__item--dropdown:focus-within .dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .navbar .nav__item--dropdown:hover .dropdown__icon, .navbar .nav__item--dropdown:focus-within .dropdown__icon {
    transform: rotate(180deg);
  }
}
.navbar .nav__link {
  color: #004aad;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 150ms ease-in-out;
  display: inline-block;
}
.navbar .nav__link:hover {
  color: #004aad;
  background: rgba(0, 74, 173, 0.05);
}
@media (max-width: 768px) {
  .navbar .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 1.25rem;
  }
}
.navbar .dropdown__toggle {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 150ms ease-in-out;
  width: 100%;
  text-align: left;
}
.navbar .dropdown__toggle[aria-expanded=true] {
  color: #004aad;
}
.navbar .dropdown__toggle[aria-expanded=true] .dropdown__icon {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .navbar .dropdown__toggle {
    padding: 16px 0;
    font-size: 1.25rem;
  }
}
.navbar .dropdown__icon {
  transition: transform 150ms ease-in-out;
  margin-left: auto;
}
.navbar .dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 150ms ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .navbar .dropdown__menu {
    position: static;
    box-shadow: none;
    padding-left: 16px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out ease;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }
  .navbar .dropdown__menu[aria-expanded=true] {
    max-height: 500px;
    margin-top: 8px;
  }
}
.navbar .dropdown__link {
  padding: 8px 16px;
  display: block;
  color: #6a7075;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.navbar .dropdown__link:hover {
  color: #004aad;
  background: rgba(0, 74, 173, 0.05);
}
@media (max-width: 768px) {
  .navbar .dropdown__link {
    padding: 8px 16px;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .navbar__cta {
    display: none;
  }
}
.navbar .nav__cta-mobile {
  display: none;
  margin-top: 32px;
  width: 100%;
}
@media (max-width: 768px) {
  .navbar .nav__cta-mobile {
    display: block;
  }
}
.navbar .btn--primary {
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease-in-out;
  display: inline-block;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.navbar .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.navbar .btn--primary:active {
  transform: translateY(0);
}
.navbar .btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0056b3;
  opacity: 0;
  transition: opacity 150ms ease-in-out;
  z-index: -1;
}
.navbar .btn--primary:hover::before {
  opacity: 0.2;
}
@media (max-width: 768px) {
  .navbar .btn--primary {
    width: 100%;
    text-align: center;
  }
}

.btn {
  display: inline-block;
  text-align: center;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 300ms ease-in-out ease-in-out;
  user-select: none;
  border: none;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  color: white;
}
.btn.btn-primary:hover {
  background: linear-gradient(90deg, #004aad 0%, #00c6ff 50%, #004aad 100%);
}

.footer {
  background: #003E94;
  color: white;
  padding: 48px 0;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
.footer .footer-grid h3, .footer .footer-grid h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.footer .footer-grid p, .footer .footer-grid li, .footer .footer-grid a {
  font-size: 0.8rem;
  color: #d7e5f1;
}
.footer .footer-grid a {
  text-decoration: none;
}
.footer .footer-grid a:hover {
  color: white;
}
.footer .footer-grid ul {
  list-style: none;
  padding: 0;
}
.footer .footer-grid ul li {
  margin-bottom: 4px;
}
.footer .footer-grid .footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .footer-grid .footer-newsletter form input {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #dee2e6;
}
.footer .footer-grid .footer-newsletter form button {
  background: #004aad;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 150ms ease-in-out;
}
.footer .footer-grid .footer-newsletter form button:hover {
  background: #0056b3;
}
.footer .footer-grid .footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer .footer-grid .footer-contact ul li i {
  font-size: 0.8rem;
}
.footer .footer-bottom {
  text-align: center;
  font-size: 0.5333333333rem;
  color: #d7e5f1;
  border-top: 1px solid #dee2e6;
  padding-top: 16px;
}
.footer .footer-bottom p {
  color: #d7e5f1;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  max-height: 91vh;
  overflow: hidden;
  background: #004aad;
  color: white;
  font-family: "Segoe UI", Roboto, sans-serif;
}
@media (max-width: 768px) {
  .hero-slider {
    height: 80vh;
  }
}
@media (max-width: 0px) {
  .hero-slider {
    height: 70vh;
  }
}
.hero-slider__slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  display: flex;
  align-items: center;
  padding: 0 64px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .hero-slider__slide {
    padding: 0 32px;
  }
}
@media (max-width: 0px) {
  .hero-slider__slide {
    padding: 0 16px;
    text-align: center;
  }
}
.hero-slider__slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-slider__slide--1 {
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
}
.hero-slider__slide--2 {
  background: linear-gradient(90deg, #004aad 0%, #00c6ff 50%, #004aad 100%);
}
.hero-slider__slide--3 {
  background: linear-gradient(135deg, #004aad 0%, #004aad 100%);
}
.hero-slider__content {
  max-width: 600px;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-slider__content {
    max-width: 100%;
  }
}
.hero-slider__subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 0px) {
  .hero-slider__subtitle {
    font-size: 1rem;
  }
}
.hero-slider__title {
  font-size: 1.953125rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1200px) {
  .hero-slider__title {
    font-size: 1.5625rem;
  }
}
@media (max-width: 0px) {
  .hero-slider__title {
    font-size: 1.25rem;
  }
}
.hero-slider__description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media (max-width: 0px) {
  .hero-slider__description {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}
.hero-slider__buttons {
  display: flex;
  gap: 16px;
}
@media (max-width: 0px) {
  .hero-slider__buttons {
    flex-direction: column;
    gap: 8px;
  }
}
.hero-slider__button {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 500;
  transition: all 150ms ease-in-out;
  text-decoration: none;
  display: inline-block;
}
.hero-slider__button--primary {
  background: white;
  color: #004aad;
}
.hero-slider__button--primary:hover {
  background: #004aad;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: white;
}
.hero-slider__button--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.hero-slider__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.hero-slider__indicators {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
@media (max-width: 0px) {
  .hero-slider__indicators {
    bottom: 24px;
  }
}
.hero-slider__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.hero-slider__indicator.active {
  background: white;
  transform: scale(1.2);
}
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 3;
}
.hero-slider__nav button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.hero-slider__nav button:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}
.hero-slider__nav button svg {
  width: 24px;
  height: 24px;
}

.product-section {
  padding: 64px 0;
  background-color: white;
}
@media (max-width: 768px) {
  .product-section {
    padding: 40px 0;
  }
}

.product-feature {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 32px;
  gap: 48px;
}
@media (max-width: 768px) {
  .product-feature {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
    padding: 0 16px;
  }
}
.product-feature:last-child {
  margin-bottom: 0;
}
.product-feature--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .product-feature--reverse {
    flex-direction: column;
  }
}
.product-feature__content {
  flex: 1;
  padding: 32px;
}
@media (max-width: 768px) {
  .product-feature__content {
    padding: 16px 0;
    text-align: center;
  }
}
.product-feature__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  color: #004aad;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding: 4px 16px;
  background-color: rgba(0, 74, 173, 0.1);
  border-radius: 12px;
}
.product-feature__title {
  font-size: 1.5625rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 24px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .product-feature__title {
    font-size: 1.25rem;
  }
}
.product-feature__description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6a7075;
  margin-bottom: 32px;
}
.product-feature__list {
  margin-bottom: 40px;
  padding-left: 24px;
}
@media (max-width: 768px) {
  .product-feature__list {
    padding-left: 0;
    list-style-position: inside;
  }
}
.product-feature__list-item {
  font-size: 1rem;
  color: #6a7075;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
}
.product-feature__list-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background-color: #004aad;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .product-feature__list-item {
    padding-left: 8px;
    text-align: left;
  }
}
.product-feature__buttons {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .product-feature__buttons {
    justify-content: center;
  }
}
@media (max-width: 0px) {
  .product-feature__buttons {
    flex-direction: column;
  }
}
.product-feature__button {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 500;
  transition: all 150ms ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.product-feature__button--primary {
  background: #004aad;
  color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.product-feature__button--primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.product-feature__button--secondary {
  background: transparent;
  color: #004aad;
  border: 2px solid #004aad;
}
.product-feature__button--secondary:hover {
  background: rgba(0, 74, 173, 0.05);
  transform: translateY(-2px);
}
.product-feature__button svg {
  width: 16px;
  height: 16px;
}
.product-feature__media {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
  transition: transform 300ms ease-in-out;
}
.product-feature__media:hover {
  transform: translateY(-5px);
}
@media (max-width: 768px) {
  .product-feature__media {
    width: 100%;
  }
}
.product-feature__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.product-feature__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.5333333333rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.product-feature__stats {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
}
.product-feature__stat {
  background: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #212529;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.product-feature__stat svg {
  width: 14px;
  height: 14px;
  color: #004aad;
}

.services-showcase {
  padding: 64px 32px;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-showcase {
    padding: 40px 16px;
  }
}
.services-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(204, 229, 255, 0.1) 0%, white 100%);
  z-index: 0;
}
.services-showcase__header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.services-showcase__title {
  font-size: 1.953125rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.services-showcase__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .services-showcase__title {
    font-size: 1.5625rem;
  }
}
.services-showcase__subtitle {
  font-size: 1.25rem;
  color: #6a7075;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .services-showcase__subtitle {
    font-size: 1rem;
  }
}
.services-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 0px) {
  .services-showcase__grid {
    grid-template-columns: 1fr;
  }
}

.service-tile {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
  transition: all 300ms ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 74, 173, 0.1);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}
.service-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 6px -1px rgb(0, 0, 0);
}
.service-tile:hover .service-tile__icon {
  transform: scale(1.1) rotate(5deg);
  background: white;
  color: white;
}
.service-tile:hover .service-tile__cta {
  color: #0056b3;
}
.service-tile:hover .service-tile__cta svg {
  transform: translateX(3px);
}
.service-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.03) 0%, white 100%);
  z-index: -1;
}
.service-tile__icon {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(0, 74, 173, 0.1);
  color: #004aad;
  transition: all 300ms ease-in-out;
}
.service-tile__icon svg {
  width: 32px;
  height: 32px;
}
.service-tile__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 16px;
  width: 100%;
  font-family: "Segoe UI", Roboto, sans-serif;
}
.service-tile__description {
  font-size: 1rem;
  color: #212529;
  line-height: 1.6;
  margin-bottom: 24px;
  width: 100%;
}
.service-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #004aad;
  text-decoration: none;
  transition: all 150ms ease-in-out;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 8px 16px;
  border-radius: 4px;
}
.service-tile__cta:hover {
  background: rgba(0, 74, 173, 0.05);
}
.service-tile__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 150ms ease-in-out;
}
.service-tile--highlight {
  border-top: 4px solid #004aad;
}
.service-tile--highlight .service-tile__icon {
  background: #b9bcc0;
  color: white;
}
.service-tile--highlight .service-tile__cta {
  color: white;
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
}
.service-tile--highlight .service-tile__cta:hover {
  background: #b9bcc0;
}

.services-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .services-showcase__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
}

.differentiators {
  padding: 64px 32px;
  background: white;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .differentiators {
    padding: 40px 16px;
  }
}
.differentiators__header {
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.differentiators__title {
  font-size: 1.953125rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.differentiators__title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .differentiators__title {
    font-size: 1.5625rem;
  }
}
.differentiators__subtitle {
  font-size: 1.25rem;
  color: #6a7075;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .differentiators__subtitle {
    font-size: 1rem;
  }
}
.differentiators__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 0px) {
  .differentiators__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.differentiator-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
  transition: all 300ms ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 1px solid rgba(0, 74, 173, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.differentiator-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px -1px rgb(0, 0, 0);
}
.differentiator-card:hover .differentiator-card__icon {
  transform: scale(1.1);
  background: #6d84c4;
  color: white;
}
.differentiator-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 74, 173, 0.03) 0%, white 100%);
  z-index: -1;
}
.differentiator-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(0, 74, 173, 0.1);
  color: #004aad;
  font-size: 24px;
  transition: all 300ms ease-in-out;
}
.differentiator-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 8px;
}
.differentiator-card__description {
  font-size: 0.8rem;
  color: #6a7075;
  line-height: 1.6;
}

.testimonial-carousel {
  padding: 56px 32px;
  background: white;
  position: relative;
  overflow: hidden;
}
.testimonial-carousel .carousel-header {
  text-align: center;
  margin-bottom: 40px;
}
.testimonial-carousel .carousel-header h2 {
  font-size: 1.953125rem;
  color: #0056b3;
  margin-bottom: 8px;
  position: relative;
}
.testimonial-carousel .carousel-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
}
.testimonial-carousel .carousel-header p {
  font-size: 1.25rem;
  color: #6a7075;
}
.testimonial-carousel .carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.testimonial-carousel .carousel-track {
  display: flex;
  transition: transform 500ms ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  cursor: grab;
}
.testimonial-carousel .carousel-track.dragging {
  cursor: grabbing;
  transition: none;
}
.testimonial-carousel .testimonial-card {
  flex: 0 0 100%;
  padding: 24px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .testimonial-carousel .testimonial-card {
    flex: 0 0 50%;
  }
}
@media (min-width: 1200px) {
  .testimonial-carousel .testimonial-card {
    flex: 0 0 33.333%;
  }
}
.testimonial-carousel .testimonial-card .quote-icon {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(0, 74, 173, 0.1);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.testimonial-carousel .testimonial-card .testimonial-text {
  position: relative;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #212529;
  margin-bottom: 32px;
  font-style: italic;
  padding-top: 16px;
}
.testimonial-carousel .testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-carousel .testimonial-card .client-info .client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 74, 173, 0.2);
}
.testimonial-carousel .testimonial-card .client-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #212529;
}
.testimonial-carousel .testimonial-card .client-info .client-title {
  font-size: 0.8rem;
  color: #6a7075;
  margin-bottom: 4px;
}
.testimonial-carousel .testimonial-card .client-info .verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.5333333333rem;
  color: #004aad;
  font-weight: 500;
}
.testimonial-carousel .testimonial-card .client-info .verified-badge svg {
  width: 14px;
  height: 14px;
}
.testimonial-carousel .carousel-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testimonial-carousel .carousel-nav .nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.2);
  border: none;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.testimonial-carousel .carousel-nav .nav-dot.active {
  background: #004aad;
  transform: scale(1.2);
}

.case-studies-section {
  padding: 64px 24px;
  background-color: #004aad;
  text-align: center;
  display: none;
}
.case-studies-section .section-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.953125rem;
  color: #212529;
  margin-bottom: 12px;
}
.case-studies-section .section-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #6a7075;
  margin-bottom: 56px;
}
.case-studies-section .case-study-grid {
  display: grid;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.case-studies-section .case-study-grid .case-study-card {
  background: #cce5ff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: box-shadow 300ms ease-in-out;
}
.case-studies-section .case-study-grid .case-study-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}
.case-studies-section .case-study-grid .case-study-card .client-logo {
  max-width: 120px;
  margin-bottom: 24px;
  display: block;
}
.case-studies-section .case-study-grid .case-study-card h3 {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.5625rem;
  color: #0056b3;
  margin-bottom: 16px;
}
.case-studies-section .case-study-grid .case-study-card .case-description {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #212529;
  margin-bottom: 24px;
}
.case-studies-section .case-study-grid .case-study-card .case-metrics {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.case-studies-section .case-study-grid .case-study-card .case-metrics li {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6a7075;
  margin-bottom: 4px;
}
.case-studies-section .case-study-grid .case-study-card .before-after {
  font-style: italic;
  font-size: 0.8rem;
  color: #212529;
}
.case-studies-section .case-study-grid .case-study-card .before-after strong {
  font-weight: 700;
  color: #004aad;
}

.cta-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #004aad 0%, #001F54 50%, #0088ff 100%);
  color: white;
  font-family: "Segoe UI", Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 16px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  text-align: center;
  z-index: 1000;
  transition: background 300ms ease-in-out, box-shadow 300ms ease-in-out;
  cursor: pointer;
}
.cta-button:hover, .cta-button:focus {
  background: #0056b3;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}
@media (max-width: 768px) {
  .cta-button {
    bottom: 0;
    right: 0;
    left: 0;
    border-radius: 0;
    padding: 24px 0;
    font-size: 1rem;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  }
}

.portfolio-section {
  padding: 64px 16px;
  background-color: white;
  text-align: center;
}
.portfolio-section .section-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.953125rem;
  color: #004aad;
  margin-bottom: 12px;
}
.portfolio-section .section-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #6a7075;
  margin-bottom: 72px;
}
.portfolio-section .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-section .portfolio-card {
  background-color: #b9bcc0;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: box-shadow 300ms ease-in-out;
}
.portfolio-section .portfolio-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.portfolio-section .portfolio-card .portfolio-logo {
  width: 80px;
  height: auto;
  margin-bottom: 24px;
  border-radius: 4px;
  object-fit: contain;
}
.portfolio-section .portfolio-card h3 {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #004aad;
  margin-bottom: 8px;
}
.portfolio-section .portfolio-card .industry {
  font-size: 0.8rem;
  color: #6a7075;
  font-style: italic;
  margin-bottom: 16px;
}
.portfolio-section .portfolio-card .description {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #212529;
  line-height: 1.6;
}
.portfolio-section .portfolio-card .description strong {
  color: #0056b3;
}

.blog-section {
  padding: 64px 16px;
  background-color: #ffffff;
  text-align: center;
}
.blog-section .section-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.953125rem;
  color: #0056b3;
  margin-bottom: 8px;
}
.blog-section .section-subtitle {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  color: #6a7075;
  margin-bottom: 56px;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.blog-section .blog-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.6);
  padding: 24px;
  text-align: left;
  transition: box-shadow 300ms ease-in-out;
}
.blog-section .blog-card:hover {
  box-shadow: 0 4px 6px -1px rgb(0, 0, 0);
}
.blog-section .blog-card .blog-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 16px;
}
.blog-section .blog-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0056b3;
}
.blog-section .blog-card .blog-meta {
  font-size: 0.8rem;
  color: #6a7075;
  margin-bottom: 8px;
}
.blog-section .blog-card .blog-excerpt {
  font-size: 1rem;
  color: #212529;
  margin-bottom: 16px;
}
.blog-section .blog-card .blog-readmore {
  font-weight: 500;
  color: #004aad;
  text-decoration: none;
  font-size: 0.8rem;
}
.blog-section .blog-card .blog-readmore:hover {
  text-decoration: underline;
  color: #0056b3;
}

.fomo-section {
  background: linear-gradient(135deg, #004aad 0%, #001F54 50%, #0088ff 100%);
  color: white;
  padding: 56px 16px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.fomo-section .fomo-content {
  max-width: 800px;
  margin: 0 auto;
}
.fomo-section .fomo-heading {
  font-size: 1.953125rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}
.fomo-section .fomo-subtext {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 32px;
}
.fomo-section .fomo-subtext .brand-name {
  font-weight: 700;
  color: white;
}
.fomo-section .fomo-cta-button {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1rem;
  background-color: white;
  color: #0056b3;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
}
.fomo-section .fomo-cta-button:hover {
  background-color: #0056b3;
  color: white;
}

.faq-section {
  padding: 56px 16px;
  background-color: white;
  color: #212529;
}
.faq-section .faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-title {
  font-size: 1.953125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #0056b3;
}
.faq-section .faq-item {
  margin-bottom: 24px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.faq-section .faq-item .faq-question {
  width: 100%;
  padding: 16px 24px;
  background-color: #cce5ff;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: background-color 150ms ease-in-out;
  position: relative;
}
.faq-section .faq-item .faq-question:hover {
  background-color: #004aad;
  color: white;
}
.faq-section .faq-item .faq-question[aria-expanded=true]::after {
  content: "-";
  position: absolute;
  right: 16px;
  font-size: 1.5rem;
}
.faq-section .faq-item .faq-question[aria-expanded=false]::after {
  content: "+";
  position: absolute;
  right: 16px;
  font-size: 1.5rem;
}
.faq-section .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease-in-out ease;
  background-color: white;
  padding: 0 24px;
}
.faq-section .faq-item .faq-answer p {
  margin: 16px 0;
  font-size: 0.8rem;
  color: #6a7075;
}
.faq-section .faq-item .faq-question[aria-expanded=true] + .faq-answer {
  max-height: 300px;
  padding-bottom: 16px;
}

.contact {
  padding: 56px 0;
  background: #fff;
}
.contact .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.contact .section-title {
  font-size: 1.953125rem;
  color: #0056b3;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.contact .section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
}
.contact .contact-form {
  background: rgb(255, 253, 253);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px 3px rgba(0.5, 0.5, 0, 0.5);
  margin-bottom: 40px;
}
.contact .contact-form .form-group {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .contact .contact-form .form-group {
    flex-direction: column;
    gap: 16px;
  }
}
.contact .contact-form .input-container {
  position: relative;
  flex: 1;
}
.contact .contact-form input, .contact .contact-form textarea, .contact .contact-form select {
  width: 100%;
  padding: 16px 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 150ms ease-in-out;
  background-color: transparent;
  z-index: 1;
  position: relative;
}
.contact .contact-form input:focus, .contact .contact-form textarea:focus, .contact .contact-form select:focus {
  outline: none;
  border-color: #004aad;
  box-shadow: 0 0 0 2px rgba(0, 74, 173, 0.2);
}
.contact .contact-form input:focus + .floating-label, .contact .contact-form input:not(:placeholder-shown) + .floating-label, .contact .contact-form textarea:focus + .floating-label, .contact .contact-form textarea:not(:placeholder-shown) + .floating-label, .contact .contact-form select:focus + .floating-label, .contact .contact-form select:not(:placeholder-shown) + .floating-label {
  top: -8px;
  left: 8px;
  font-size: 0.5333333333rem;
  background: white;
  padding: 0 4px;
  color: #004aad;
  z-index: 2;
}
.contact .contact-form .floating-label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: #6a7075;
  font-size: 1rem;
  transition: all 150ms ease-in-out;
  pointer-events: none;
}
.contact .contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 24px;
}
.contact .contact-form textarea + .floating-label {
  top: 16px;
  left: 16px;
}
.contact .contact-form textarea:focus + .floating-label, .contact .contact-form textarea:not(:placeholder-shown) + .floating-label {
  top: -8px;
  left: 8px;
}
.contact .contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 32px;
}
.contact .contact-form .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.contact .contact-form .checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #6a7075;
  cursor: pointer;
}
.contact .contact-form .checkbox input {
  width: auto;
  accent-color: #004aad;
}
.contact .contact-form .btn-primary {
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
.contact .contact-form .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.contact .contact-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}
.contact .contact-actions .btn {
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.contact .contact-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.contact .contact-actions .btn.whatsapp {
  background: #25D366;
  color: white;
}
.contact .contact-actions .btn.call {
  background: #004aad;
  color: white;
}
.contact .social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.contact .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 74, 173, 0.1);
  color: #004aad;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease-in-out;
}
.contact .social-links a:hover {
  background: #004aad;
  color: white;
  transform: translateY(-2px);
}

.product-detail-page {
  padding: 64px 16px;
  background-color: white;
  color: #212529;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.product-detail-page .container {
  max-width: 1200px;
  margin: 0 auto;
}
.product-detail-page .product-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .product-detail-page .product-layout {
    flex-direction: column;
  }
}
.product-detail-page .main-product {
  flex: 2;
  background-color: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.product-detail-page .main-product .main-product-image {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 24px;
}
.product-detail-page .main-product .product-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.5625rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.product-detail-page .main-product .product-description {
  font-size: 1rem;
  color: #6a7075;
  margin-bottom: 32px;
  line-height: 1.6;
}
.product-detail-page .main-product .learn-more-btn {
  display: inline-block;
  background: #004aad;
  color: white;
  padding: 16px 32px;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  transition: background 300ms ease-in-out;
}
.product-detail-page .main-product .learn-more-btn:hover {
  background: #0056b3;
}
.product-detail-page .other-products {
  background: #cce5ff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.product-detail-page .other-products .sidebar-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  color: #004aad;
  font-weight: 700;
  margin-bottom: 16px;
  border-bottom: 2px solid #004aad;
  padding-bottom: 4px;
}
.product-detail-page .other-products .product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-detail-page .other-products .product-list li {
  margin-bottom: 16px;
}
.product-detail-page .other-products .product-list li a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: #212529;
  background-color: white;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 150ms ease-in-out, transform 150ms ease-in-out;
}
.product-detail-page .other-products .product-list li a:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.product-detail-page .other-products .product-list li a img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 8px;
}
.product-detail-page .other-products .product-list li a .info h3 {
  font-size: 0.8rem;
  margin: 0 0 4px;
  font-weight: 500;
  color: #004aad;
}
.product-detail-page .other-products .product-list li a .info p {
  font-size: 0.5333333333rem;
  color: #6a7075;
  margin: 0;
  line-height: 1.4;
}

.about-hero {
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  color: white;
  padding: 64px 0;
  text-align: center;
}
.about-hero h1 {
  font-size: 1.953125rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.about-hero p {
  font-size: 1.25rem;
  color: hsl(0, 50%, 98%);
}

.about-overview {
  padding: 64px 0;
}
.about-overview .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-overview .grid {
    grid-template-columns: 1fr;
  }
}
.about-overview .about-text h2 {
  font-size: 1.5625rem;
  margin-bottom: 16px;
}
.about-overview .about-text p {
  color: #6a7075;
  font-size: 1rem;
  line-height: 1.6;
}
.about-overview .about-img img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mission-vision {
  background-color: #cce5ff;
  padding: 64px 0;
}
.mission-vision .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .mission-vision .grid {
    grid-template-columns: 1fr;
  }
}
.mission-vision h3 {
  font-size: 1.25rem;
  color: #0056b3;
}
.mission-vision p {
  font-size: 1rem;
  color: #6a7075;
}

.core-values {
  padding: 64px 0;
}
.core-values h2 {
  text-align: center;
  font-size: 1.5625rem;
  margin-bottom: 40px;
}
.core-values .values-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.core-values .values-list li {
  background: #004aad;
  color: white;
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.about-cta {
  background: linear-gradient(90deg, #004aad 0%, #00c6ff 50%, #004aad 100%);
  color: white;
  text-align: center;
  padding: 64px 0;
}
.about-cta h2 {
  font-size: 1.5625rem;
  margin-bottom: 8px;
}
.about-cta p {
  font-size: 1rem;
  margin-bottom: 24px;
}
.about-cta .btn-primary {
  background-color: white;
  color: #004aad;
  padding: 8px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 150ms ease-in-out;
}
.about-cta .btn-primary:hover {
  background-color: hsl(0, 50%, 98%);
}

.career-page {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #212529;
  background-color: white;
  padding: 40px 0;
}
.career-page .career-hero {
  background: linear-gradient(90deg, #004aad 0%, #00c6ff 50%, #004aad 100%);
  color: white;
  padding: 48px 0;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.career-page .career-hero h1 {
  font-size: 1.953125rem;
  font-family: "Segoe UI", Roboto, sans-serif;
  margin-bottom: 8px;
}
.career-page .career-hero p {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.career-page .career-content {
  margin-top: 40px;
}
.career-page .career-content .career-info {
  margin-bottom: 40px;
}
.career-page .career-content .career-info h2 {
  font-size: 1.5625rem;
  margin-bottom: 8px;
  color: #0056b3;
}
.career-page .career-content .career-info p {
  font-size: 1rem;
  color: #6a7075;
  line-height: 1.6;
}
.career-page .career-content .career-positions h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: #004aad;
}
.career-page .career-content .career-positions .job-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 24px;
}
.career-page .career-content .career-positions .job-list li {
  padding: 24px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out cubic-bezier(0.4, 0, 0.2, 1);
}
.career-page .career-content .career-positions .job-list li:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.career-page .career-content .career-positions .job-list li h4 {
  margin-bottom: 4px;
  font-size: 1.25rem;
  color: #000000;
}
.career-page .career-content .career-positions .job-list li p {
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: #6a7075;
}
.career-page .career-content .career-positions .job-list li .apply-btn {
  display: inline-block;
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: background 150ms ease-in-out;
}
.career-page .career-content .career-positions .job-list li .apply-btn:hover {
  opacity: 0.9;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .blog-container {
    flex-direction: row;
    gap: 48px;
  }
}

/* Blog Article Styles */
.blog-article {
  flex: 1;
}

.blog-header {
  margin-bottom: 32px;
}

.blog-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.953125rem;
  font-weight: 700;
  color: #0056b3;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.blog-meta {
  display: flex;
  gap: 24px;
  color: #6a7075;
  font-size: 0.8rem;
  margin-bottom: 24px;
}
.blog-meta i {
  margin-right: 4px;
}

.blog-content p, .blog-content ul, .blog-content ol {
  margin-bottom: 24px;
}
.blog-content h2 {
  font-size: 1.5625rem;
  color: #0056b3;
  margin: 32px 0 16px;
}
.blog-content h3 {
  font-size: 1.25rem;
  margin: 24px 0 8px;
}
.blog-content code, .blog-content pre {
  background-color: #cce5ff;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: monospace;
}
.blog-content pre {
  display: block;
  padding: 16px;
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 8px;
}

.blog-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 24px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Sidebar Styles */
.blog-sidebar {
  width: 100%;
}
@media (min-width: 768px) {
  .blog-sidebar {
    width: 320px;
  }
}

.related-posts {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
}

.related-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0056b3;
  margin: 0 0 24px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid #cce5ff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.related-title i {
  color: #004aad;
}

.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.related-item {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(222, 226, 230, 0.5);
  transition: 150ms ease-in-out;
}
.related-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.related-item:hover {
  transform: translateY(-2px);
}

.related-post-container {
  display: flex;
  gap: 16px;
  align-items: center;
}

.related-post-image {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 4px;
  overflow: hidden;
}
.related-post-image .related-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 300ms ease-in-out;
}

.related-item:hover .related-image {
  transform: scale(1.1);
}

.related-post-content {
  flex: 1;
}

.related-link {
  display: block;
  color: #212529;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: 150ms ease-in-out;
}
.related-link:hover {
  color: #004aad;
}

.related-date {
  display: block;
  font-size: 0.5333333333rem;
  color: #6a7075;
}

/* Newsletter Styles */
.newsletter {
  background: linear-gradient(135deg, #004aad 0%, #002b6c 100%);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: white;
}

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

.newsletter-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.newsletter-icon i {
  color: white;
}

.newsletter-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0 0 4px 0;
}

.newsletter-subtitle {
  font-size: 0.8rem;
  opacity: 0.9;
  margin: 0;
}

.newsletter-text {
  font-size: 0.8rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.newsletter-input {
  padding: 16px;
  border: none;
  border-radius: 4px;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  transition: 150ms ease-in-out;
}
.newsletter-input:focus {
  outline: none;
  background: white;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}
.newsletter-input::placeholder {
  color: #6a7075;
}

.newsletter-button {
  background: white;
  color: #004aad;
  border: none;
  padding: 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: 150ms ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.newsletter-button:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.newsletter-button:hover i {
  transform: translateX(2px);
}
.newsletter-button i {
  transition: 150ms ease-in-out;
}

.newsletter-privacy {
  font-size: 0.5333333333rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.newsletter-privacy i {
  font-size: 0.5333333333rem;
}

.blog-grid-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px;
}

.blog-grid-header {
  text-align: center;
  margin-bottom: 48px;
}
.blog-grid-header h1 {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.953125rem;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 8px;
}
.blog-grid-header .subtitle {
  font-size: 1.25rem;
  color: #6a7075;
  margin: 0;
}

.blog-grid-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  padding: 16px 0;
  border-bottom: 1px solid #dee2e6;
}
.blog-grid-filters .filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-grid-filters .filter-group label {
  font-size: 0.8rem;
  font-weight: 500;
}
.blog-grid-filters .filter-select {
  padding: 8px;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  font-size: 0.8rem;
  background-color: white;
  transition: 150ms ease-in-out;
}
.blog-grid-filters .filter-select:focus {
  outline: none;
  border-color: #004aad;
  box-shadow: 0 0 0 2px rgba(0, 74, 173, 0.2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  }
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.blog-card .card-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-card .card-image-container {
    height: 220px;
  }
}
.blog-card .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 500ms ease-in-out;
}
.blog-card:hover .card-image {
  transform: scale(1.05);
}
.blog-card .card-category {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #004aad;
  color: white;
  padding: 4px 16px;
  border-radius: 4px;
  font-size: 0.5333333333rem;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-card .card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.5333333333rem;
  color: #6a7075;
  margin-bottom: 16px;
}
.blog-card .card-meta i {
  margin-right: 4px;
}
.blog-card .card-title {
  font-family: "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin: 0 0 16px 0;
  line-height: 1.3;
}
.blog-card .card-excerpt {
  font-size: 0.8rem;
  color: #6a7075;
  margin-bottom: 24px;
  flex: 1;
}
.blog-card .card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #004aad;
  text-decoration: none;
  transition: 150ms ease-in-out;
}
.blog-card .card-read-more:hover {
  color: #0056b3;
  gap: 8px;
}
.blog-card .card-read-more:hover i {
  transform: translateX(2px);
}
.blog-card .card-read-more i {
  transition: 150ms ease-in-out;
}

.blog-grid-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
}
.blog-grid-pagination .pagination-button {
  padding: 8px 24px;
  border: 1px solid #dee2e6;
  background-color: white;
  color: #212529;
  border-radius: 4px;
  cursor: pointer;
  transition: 150ms ease-in-out;
  font-size: 0.8rem;
  font-weight: 500;
}
.blog-grid-pagination .pagination-button:hover:not(.active) {
  background-color: #cce5ff;
  border-color: #cce5ff;
}
.blog-grid-pagination .pagination-button.active {
  background-color: #004aad;
  color: white;
  border-color: #004aad;
}
.blog-grid-pagination .pagination-button.next {
  padding: 8px 16px;
}
.blog-grid-pagination .pagination-button i {
  font-size: 0.5333333333rem;
}

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