@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
:root {
  --primary-color: #00659C;
  --secondary-color: #2ecc71;
  --text-color: #333333;
  --heading-color: #7D7D7D;
  --text-muted-color: #B3B3B3;
  --light-gray: #E4E4E4;
  --icon-gray: #F5F2F2;
  --background-color: #ffffff;
  --white: #ffffff;
  --black: #000000;
  --gold: #FFD700;
  --gradient-bg: linear-gradient(180deg, #FFFFFF 0%, #B6D3E2 100%);
  --glass-bg: linear-gradient(90deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 252, 255, 0.75) 100%);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: -1px;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #333;
  background-color: #fff;
}

p {
  margin: 0 0;
  line-height: 1.5;
  font-size: 12px;
  color: var(--text-color);
}

a {
  color: var(--text-color);
  text-decoration: none;
}

button {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

input, textarea {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  border: none;
  outline: none;
  background: none;
}

.mini-heading h2 {
  font-size: 16px;
  color: var(--heading-color);
  font-weight: 700;
}
.mini-heading h2::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 6px;
  background-color: #00659C;
  margin-right: 15px;
  vertical-align: middle;
}

.classic-heading {
  font-size: 16px;
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
}

.section-heading {
  font-size: 46px;
  color: var(--black);
  font-weight: 400;
  line-height: 3rem;
}
@media (max-width: 992px) {
  .section-heading {
    font-size: 30px;
    line-height: 2.5rem;
  }
}

.section-subheading {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
}

.heading-placeholder {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 8px;
}
.heading-placeholder p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
}

.big-section-stroke-heading {
  font-size: 120px;
  color: transparent;
  font-weight: 900;
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
}
@media (max-width: 992px) {
  .big-section-stroke-heading {
    font-size: 96px;
  }
}

.main-pd-lr {
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 992px) {
  .main-pd-lr {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.main-pd-tb {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 992px) {
  .main-pd-tb {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.bd-rd-8 {
  border-radius: 8px;
}

.bd-white {
  border: 1px solid var(--white);
}

.text-primary {
  color: #00659C;
}

.text-black {
  color: var(--black);
}

.text-white {
  color: var(--white);
}

.bg-primary {
  background-color: #00659C;
}

.bg-gradient-light {
  background: var(--gradient-bg);
}

.bg-dark {
  background-color: var(--black);
}

.bg-white {
  background-color: var(--white);
}

.bg-glass {
  background: var(--glass-bg);
}

.bg-accent {
  background-color: rgba(0, 101, 156, 0.2);
}

.bd-color-primary {
  border-color: #00659C;
}

.bd-1 {
  border-style: solid;
  border-width: 1px;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff; /* Background color of the preloader */
  z-index: 9999; /* Ensure the preloader is on top of other elements */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.preloader.fade-out {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease; /* Smooth fade-out transition */
}

.loader {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 60px; /* Size of the loader */
  height: 60px; /* Size of the loader */
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite; /* Spin animation */
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.menu-button {
  padding: 5px 14px;
  border-radius: 8px;
}

.btn {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}
.btn.sm {
  padding: 10px 14px;
}
.btn.trans-white {
  color: var(--white);
}
.btn.trans-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.btn-primary {
  background-color: #00659C;
  color: #fff;
}

.glass-view {
  background: rgba(255, 255, 255, 0.705);
}

.glass-card {
  background: rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

header {
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0px 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  width: 100%;
  top: 30px;
  z-index: 1000;
  -webkit-transition: background 0.3s ease, top 0.3s ease, backdrop-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, top 0.3s ease, backdrop-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: background 0.3s ease, top 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  transition: background 0.3s ease, top 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease, -webkit-box-shadow 0.3s ease;
}
header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
header .logo {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
header nav ul {
  list-style: none;
}
header nav ul li {
  display: inline-block;
  margin-left: 30px;
  font-size: 14px;
}
header nav ul li.active a {
  font-weight: 700;
  color: #00659C;
}
header nav ul li a:hover {
  color: rgb(3, 166.1538461538, 255);
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
}
header nav.open {
  display: block;
  position: absolute;
  top: 65px;
  left: 0p;
  right: 0;
  width: 100%;
  background-color: var(--white);
  padding: 20px 30px;
  border-radius: 0px 0px 8px 8px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
header nav.open ul li {
  display: block;
  margin: 15px 0;
}
header .right-menu-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media (max-width: 768px) {
  header .right-menu-buttons .menu-button {
    display: none;
  }
  header .right-menu-buttons .menu-button.hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
header .hamburger-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .hamburger-menu .bar {
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  margin: 2px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* ===============================
   HEADER RESPONSIVENESS
================================ */
/* Tablets */
@media (max-width: 992px) {
  header {
    padding: 0 30px;
  }
  header nav ul li {
    margin-left: 20px;
  }
}
.banner-section {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(57%, rgba(0, 101, 156, 0.279)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(0, 101, 156, 0.279) 57%, rgb(0, 0, 0) 100%);
  z-index: 1;
}
.banner-section.banner-bg {
  background-image: url("../images/banner/banner-bg.jpeg");
  background-size: cover;
  background-position: center;
  -webkit-transition: 1.2s ease-in-out;
  transition: 1.2s ease-in-out;
}
.banner-section .banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 1.2s ease-in-out;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
}
.banner-section.show-video .banner-video {
  opacity: 1;
}
.banner-section.show-video.banner-bg {
  background-image: none;
}
.banner-section .banner-content {
  position: relative;
  z-index: 2;
  max-width: 950px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .banner-section .banner-content {
    max-width: 700px;
  }
}
.banner-section .banner-content h1 {
  font-size: 76px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 4.9rem;
  font-weight: 400;
}
@media (max-width: 1120px) {
  .banner-section .banner-content h1 {
    font-size: 60px;
    line-height: 4.5rem;
  }
}
@media (max-width: 1080px) {
  .banner-section .banner-content h1 {
    font-size: 55px;
    line-height: 4rem;
    margin-bottom: 0;
  }
}
@media (max-width: 925px) {
  .banner-section .banner-content h1 {
    font-size: 48px;
    line-height: 3.5rem;
  }
}
@media (max-width: 768px) {
  .banner-section .banner-content h1 {
    font-size: 36px;
    line-height: 2.5rem;
  }
}
.banner-section .banner-content p {
  font-size: 16px;
  color: var(--white);
}
@media (max-width: 1120px) {
  .banner-section .banner-content p {
    font-size: 14px;
  }
}

.d-block {
  display: block;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

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

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

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

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

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.align-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.m-0 {
  margin: 0;
}

.m-1 {
  margin: 10px;
}

.m-2 {
  margin: 20px;
}

.m-3 {
  margin: 30px;
}

.m-4 {
  margin: 40px;
}

.m-5 {
  margin: 50px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 50px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.ml-0 {
  margin-left: 0;
}

.ml-1 {
  margin-left: 10px;
}

.ml-2 {
  margin-left: 20px;
}

.ml-3 {
  margin-left: 30px;
}

.pl-0 {
  padding-left: 0;
}

.pl-1 {
  padding-left: 10px;
}

.pl-2 {
  padding-left: 20px;
}

.pl-3 {
  padding-left: 30px;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 10px;
}

.gap-2 {
  gap: 20px;
}

.gap-3 {
  gap: 30px;
}

.gap-4 {
  gap: 40px;
}

.gap-5 {
  gap: 50px;
}

.w-100 {
  width: 100%;
}

.max-w-1 {
  max-width: 100px;
}

.max-w-2 {
  max-width: 200px;
}

.max-w-3 {
  max-width: 300px;
}

.max-w-4 {
  max-width: 400px;
}

.max-w-5 {
  max-width: 500px;
}

.max-w-6 {
  max-width: 600px;
}

.max-w-7 {
  max-width: 700px;
}

.max-w-8 {
  max-width: 800px;
}

.max-w-9 {
  max-width: 900px;
}

.max-w-10 {
  max-width: 1000px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.services-slider {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.services-slider .slider-viewport {
  overflow-x: clip;
  width: 100%;
}
.services-slider .slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  gap: 16px;
}
.services-slider .service-card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(25% - 12px);
          flex: 0 0 calc(25% - 12px);
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 30px rgba(0, 0, 0, 0.08);
  height: 519px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* step badge (in-flow, not absolute) */
}
@media (max-width: 1180px) {
  .services-slider .service-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.333% - 10.66px);
            flex: 0 0 calc(33.333% - 10.66px);
  }
}
@media (max-width: 870px) {
  .services-slider .service-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 8px);
            flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 720px) {
  .services-slider .service-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.services-slider .service-card .step {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #cfe3ef;
  color: #000;
  width: 66px;
  height: 66px;
  border-radius: 9000px;
  font-size: 30px;
  text-align: center;
  line-height: 36px;
  font-weight: 500;
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}
.services-slider .service-card .card-content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* hover effect: lift card and gently scale image */
}
.services-slider .service-card .card-content .card-info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  /* image wrapper keeps image contained and scaled */
  -webkit-transition: -webkit-transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: -webkit-transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition: transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1), -webkit-transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.services-slider .service-card .card-content .card-info .card-image {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  overflow: hidden;
  margin-top: 12px;
}
.services-slider .service-card .card-content .card-info .card-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.services-slider .service-card .card-content .card-info h3 {
  font-size: 18px;
  margin-top: 10px;
}
.services-slider .service-card .card-content:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  cursor: pointer;
}
.services-slider .service-card .card-content:hover .card-image img {
  -webkit-transform: scale(1.06) translateY(-4px);
          transform: scale(1.06) translateY(-4px);
}
.services-slider .service-card .card-content .btn {
  display: none;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.services-slider .service-card .card-content:hover .btn {
  display: inline-block;
}
.services-slider .nav-btn {
  background: #000;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.services-slider .nav-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.services-slider-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 20px;
}
.services-slider-btns .nav-btn {
  background-color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 9000px;
  width: 42px;
  height: 42px;
}
.services-slider-btns .nav-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted-color);
}
.services-slider-btns .nav-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: transparent;
  border: 1px solid var(--light-gray);
}
.services-slider-btns .nav-btn:hover {
  background-color: hsl(0, 0%, -10%);
}

.who-we-are-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
@media (max-width: 950px) {
  .who-we-are-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.who-we-are-cards .who-we-are-card.image-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.who-we-are-cards .who-we-are-card.image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.who-we-are-cards .who-we-are-card.d-flex {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 950px) {
  .who-we-are-cards .who-we-are-card.d-flex {
    padding: 0;
  }
}
.who-we-are-cards .who-we-are-card.d-flex p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 1.6;
}

.section-subsection .who-we-are-grid {
  margin-top: 20px;
  display: grid;
}
.section-subsection .who-we-are-grid .who-we-are-item .display-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 9000px;
  background-color: var(--icon-gray);
}
.section-subsection .who-we-are-grid .who-we-are-item .display-icon svg {
  font-size: 24px;
  color: #00659C;
}
.section-subsection .who-we-are-grid .who-we-are-item h4 {
  margin-top: 10px;
  font-size: 18px;
  color: var(--text-color);
}

.partners-section .partners-logos {
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.partners-section .partners-logos .partner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.partners-section .partners-logos img {
  max-width: 150px;
  max-height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.8;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (max-width: 600px) {
  .partners-section .partners-logos img {
    max-width: 100px;
    max-height: 60px;
  }
}
.partners-section .partners-logos img:hover {
  opacity: 1;
}

.why-choose-use-section {
  gap: 100px;
}
@media (max-width: 1180px) {
  .why-choose-use-section {
    gap: 50px;
  }
}
@media (max-width: 1080px) {
  .why-choose-use-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.why-choose-use-section .why-choose-use-left {
  max-width: 600px;
}
@media (max-width: 1370px) {
  .why-choose-use-section .why-choose-use-left {
    max-width: 500px;
  }
}
@media (max-width: 1210px) {
  .why-choose-use-section .why-choose-use-left {
    max-width: 450px;
  }
}
.why-choose-use-section .why-choose-use-right .why-choose-us-item {
  padding: 20px;
  background-color: var(--white);
  border-radius: 16px;
}
.why-choose-use-section .why-choose-use-right .why-choose-us-item .display-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 9000px;
  background-color: var(--icon-gray);
}
.why-choose-use-section .why-choose-use-right .why-choose-us-item .display-icon svg {
  font-size: 24px;
  color: #00659C;
}
.why-choose-use-section .why-choose-use-right .why-choose-us-item .item-content h4 {
  font-size: 20px;
  color: var(--text-color);
}
.why-choose-use-section .why-choose-use-right .why-choose-us-item .item-content p {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
}

.product-section {
  /* mini 3-image grid for product showcase */
}
.product-section .product-display {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.product-section .product-display .product-info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1180px) {
  .product-section .product-display .product-info {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.product-section .product-display:nth-child(2) .product-info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 55%;
          flex: 1 1 55%;
}
@media (max-width: 1090px) {
  .product-section .product-display:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product-section .product-display .product-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 55%;
          flex: 1 1 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 0; /* allow flex children to size correctly */
}
@media (max-width: 1180px) {
  .product-section .product-display .product-image {
    display: none;
  }
}
.product-section .product-display .product-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.product-section .product-display .sub-product-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
}
.product-section .product-display .sub-product-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.product-section .product-images-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin: 20px 0;
}
.product-section .product-images-grid .product-image-small {
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.product-section .product-images-grid .product-image-small img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.product-section .product-images-grid .product-image-small:hover {
  border-color: rgba(255, 255, 255, 0.3);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.product-section .product-images-grid .product-image-small:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (max-width: 600px) {
  .product-section .product-item-grid {
    grid-template-columns: 1fr !important;
  }
}
.product-section .product-item-grid .product-item {
  padding: 0px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-section .product-item-grid .product-item .display-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 9000px;
  background-color: var(--primary-color);
}
.product-section .product-item-grid .product-item .display-icon svg {
  font-size: 24px;
  color: var(--white);
}
.product-section .product-item-grid .product-item h4 {
  font-size: 20px;
  /* prevent action buttons inside product display from shrinking */
  font-weight: 400;
  color: var(--white);
}
.product-section .product-item-grid .product-item h4 .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-width: 140px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .product-section .call-to-action {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-section .call-to-action .d-flex {
    padding: 20px;
  }
  .product-section .call-to-action button {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}

.testimonial-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1200px) {
  .testimonial-section {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1075px) {
  .testimonial-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 30px;
  }
}
.testimonial-section .testimonial-content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.testimonial-section .testimonial-content .testimonial-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-viewport {
  height: 220px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
@media (max-width: 522px) {
  .testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-viewport {
    height: 320px;
  }
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-viewport .testimonial-slider-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-viewport .testimonial-slider-track .testimonial-item {
  min-height: 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px;
  background: var(--glass-bg);
  border-radius: 16px;
  gap: 12px;
}
@media (max-width: 522px) {
  .testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-viewport .testimonial-slider-track .testimonial-item {
    padding: 20px;
    min-height: 320px;
  }
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-viewport .testimonial-slider-track .testimonial-item .testimonial-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-viewport .testimonial-slider-track .testimonial-item .testimonial-rating .iconify {
  font-size: 20px;
  color: var(--gold);
  -webkit-transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease;
  transition: transform 0.2s ease, color 0.2s ease, -webkit-transform 0.2s ease;
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-viewport .testimonial-slider-track .testimonial-item .testimonial-text {
  font-size: 14px;
  color: var(--text-color);
  line-height: 1.6;
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-control .nav-btn {
  background-color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 9000px;
  width: 42px;
  height: 42px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-control .nav-btn svg {
  width: 20px;
  height: 20px;
  color: var(--text-muted-color);
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-control .nav-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: transparent;
  border: 1px solid var(--light-gray);
}
.testimonial-section .testimonial-content .testimonial-wrapper .testimonial-slider-control .nav-btn:hover {
  background-color: hsl(0, 0%, -10%);
}
.testimonial-section .section-image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 400px;
          flex: 1 1 400px;
}
@media (max-width: 1075px) {
  .testimonial-section .section-image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
.testimonial-section .section-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.newsletter-section {
  margin: auto;
  max-width: 1200px;
  position: relative;
}
.newsletter-section .newsletter-content {
  position: relative;
  overflow: hidden;
  background-color: rgba(0, 101, 156, 0.24);
  padding: 40px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .newsletter-section .newsletter-content {
    padding: 20px;
  }
}
.newsletter-section .newsletter-content .newsletter-form {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .newsletter-section .newsletter-content .newsletter-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .newsletter-section .newsletter-content .newsletter-form button {
    padding: 10px;
  }
}
.newsletter-section .newsletter-content .newsletter-form input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  border: none;
  outline: none;
  color: var(--black);
}
.newsletter-section .newsletter-content .absolute-bg {
  position: absolute;
  bottom: -350px;
  right: -100px;
  width: 650px;
  opacity: 0.4;
  z-index: 0;
}

.footer-section {
  padding-top: 50px;
}
.footer-section .footer-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 70px;
}
.footer-section .footer-content .content-wrapper {
  position: relative;
}
.footer-section .footer-content .content-wrapper .footer-content-block {
  position: relative;
  width: 100%;
  min-width: 200px;
}
@media (max-width: 735px) {
  .footer-section .footer-content .content-wrapper .footer-content-block {
    min-width: auto;
  }
}
.footer-section .footer-content .content-wrapper .footer-content-block .contact-list .contact-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .footer-section .footer-content .content-wrapper .footer-content-block .contact-list .contact-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.footer-section .footer-content .content-wrapper .footer-content-block .contact-list .contact-block .display-icon {
  font-size: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white);
}
.footer-section .footer-content .content-wrapper .footer-content-block .contact-list .contact-block .block-content h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.footer-section .footer-content .content-wrapper .footer-content-block .contact-list .contact-block .block-content h5 span {
  font-size: 12px;
  font-weight: 400;
}
.footer-section .footer-content .content-wrapper .footer-content-block .contact-list .contact-block .block-content p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
}
.footer-section .footer-content .content-wrapper .footer-content-block .social-handlers {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.footer-section .footer-content .content-wrapper .footer-content-block .social-handlers svg {
  font-size: 20px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer-section .footer-content .content-wrapper .footer-content-block .social-handlers svg:hover {
  color: #00659C;
}
.footer-section .footer-content .content-wrapper .sub-section .section-divide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-top: 10px;
  margin-bottom: 10px;
}
.footer-section .footer-content .content-wrapper .sub-section .section-divide .rectangle {
  width: 40px;
  height: 2px;
  background-color: var(--text-color);
}
.footer-section .footer-content .content-wrapper .sub-section .section-divide .hr {
  width: 100%;
  height: 1px;
  background-color: rgb(25.5, 25.5, 25.5);
}
.footer-section .footer-content .content-wrapper .sub-section .sub-section-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.footer-section .copyright-section {
  border-top: 1px solid rgb(25.5, 25.5, 25.5);
}

/* ===============================
   FOOTER RESPONSIVENESS
================================ */
@media (max-width: 1400px) {
  .footer-section .footer-content {
    gap: 40px;
  }
  .footer-section .sub-section-flex {
    gap: 25px;
  }
}
/* Tablets */
@media (max-width: 1200px) {
  .footer-section .footer-content {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
  }
  .footer-section .content-wrapper {
    width: 48%;
  }
  .footer-section .sub-section-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 25px;
  }
}
/* Large Phones */
@media (max-width: 768px) {
  .footer-section {
    padding-top: 30px;
  }
  .footer-section .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
  }
  .footer-section .content-wrapper {
    width: 100%;
  }
  .footer-section .sub-section-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .footer-section .social-handlers {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-section .copyright-section {
    text-align: center;
    padding-top: 20px;
  }
}
/* Small Phones */
@media (max-width: 480px) {
  .footer-section .classic-heading {
    font-size: 16px;
  }
  .footer-section .contact-block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-section .contact-block .display-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .footer-section .contact-block h5 {
    font-size: 14px;
  }
  .footer-section .contact-block p {
    font-size: 13px;
  }
  .footer-section .footer-links a {
    font-size: 13px;
  }
  .footer-section .social-handlers svg {
    font-size: 22px;
  }
  .footer-section .copyright-section p {
    font-size: 12px;
  }
}/*# sourceMappingURL=style.min.css.map */