@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  overflow-x: hidden !important;
}

.text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 18px;
  color: #333;
}
@media (max-width: 575.98px) {
  .text {
    font-size: 16px;
  }
}

.head {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 48px;
  color: #000;
}
@media (max-width: 575.98px) {
  .head {
    font-size: 32px;
  }
}

.subhead {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #0043B3;
}
@media (max-width: 575.98px) {
  .subhead {
    font-size: 14px;
  }
}

.text-accent-blue {
  color: #06327e;
}

.text-accent-pink {
  color: #792779;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f6f9ff 0%, #e8f2ff 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}
.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader .loader-content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}
.loader .loader-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}
.loader .loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #e3f2fd;
  border-top: 4px solid #0043B3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.loader .loader-text {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 18px;
  color: #0043B3;
  margin: 0;
  animation: fadeInOut 2s infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 0.75rem 0;
  margin-bottom: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  pointer-events: auto;
}
.navbar .navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar.navbar--hidden {
  transform: translateY(-120%);
  pointer-events: none;
}
.navbar {
  /* Offcanvas lives outside <nav>; below lg, never hide bar (scroll JS + fixed stacking) */
}
@media (max-width: 991.98px) {
  .navbar.navbar--hidden {
    transform: none;
    pointer-events: auto;
  }
}
@media (max-width: 575.98px) {
  .navbar {
    padding: 0;
  }
}
.navbar .logo {
  max-width: 70px;
}
.navbar .bg-navbar {
  padding: 0px 30px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 70px;
  z-index: 10000;
  background-color: #f6f9ff !important;
}
@media (max-width: 575.98px) {
  .navbar .bg-navbar {
    padding: 0 10px;
    border-radius: 0;
  }
}
.navbar .bg-navbar .nav-link {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #333;
  text-transform: uppercase;
}
.navbar .bg-navbar .nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #0043B3;
}
.navbar .bg-navbar .active {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 16px;
  color: #191919;
}

/* Mobile menu: logo in header (offcanvas is outside .navbar) */
#offcanvasNavbar {
  background: #f6f9ff;
  height: 75%;
  border-left: 1px solid rgba(0, 67, 179, 0.08);
  box-shadow: -12px 0 32px rgba(15, 25, 65, 0.12);
}
#offcanvasNavbar .offcanvas-header {
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(0, 67, 179, 0.08);
}
#offcanvasNavbar .offcanvas-body {
  padding: 1rem;
  background: #f6f9ff;
}
#offcanvasNavbar .nav-link {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 15px;
  color: #1f2e4f;
  display: block;
  padding: 0.85rem 0;
  margin-right: 0 !important;
  border-bottom: 1px solid rgba(0, 67, 179, 0.08);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
#offcanvasNavbar .nav-item:last-child .nav-link {
  border-bottom: 0;
}

#offcanvasNavbar .offcanvas-title {
  margin: 0;
}
#offcanvasNavbar .offcanvas-title .logo,
#offcanvasNavbar .offcanvas-title img {
  display: block;
  max-width: 120px;
  width: 100%;
  height: auto;
}

.btn.btn-outline {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #a545a5;
  border: 2px solid #a545a5;
  border-radius: 34px;
  background-color: transparent;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.btn.btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #c04cc0;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn.btn-outline:hover::before {
  scale: 3;
}
.btn.btn-outline:hover {
  color: #fff;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(255, 121, 254, 0.4);
}
.btn.btn-outline:active {
  scale: 1;
}

.btn.btn-primary {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  border: 2px solid #12254d;
  border-radius: 34px;
  background-color: #12254d;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.btn.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #0043b3;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn.btn-primary:hover::before {
  scale: 3;
}
.btn.btn-primary:hover {
  color: #fff;
  scale: 1.1;
  box-shadow: 0 0px 22px rgba(18, 37, 77, 0.45);
}
.btn.btn-primary:active {
  scale: 1;
}

.form::after {
  content: url("../img/mandala.svg");
  position: absolute;
  top: -60px;
  left: -50px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 575.98px) {
  .form::after {
    display: none;
  }
}
.form::before {
  content: url("../img/mandala2.svg");
  position: absolute;
  bottom: -80px;
  right: -80px;
  z-index: -1;
  opacity: 0.4;
}
@media (max-width: 575.98px) {
  .form::before {
    display: none;
  }
}
.form .form-container {
  background: #FFFFFF;
  border: 1px solid #E6E6E6;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.form .form-container .contact-info {
  background: #16285f;
  border-radius: 10px;
  position: relative;
}
.form .form-container .contact-info::after {
  position: absolute;
  content: url("../img/icons/after-form.svg");
  bottom: -10px;
  right: 0;
}
.form .form-container .contact-info .nav-link {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}
.form .form-container .contact-info .nav-link:hover {
  color: #e59216;
}
.form .form-container .contact-info .nav-link.active {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 16px;
  color: #191919;
}
.form .form-container .contact-info .newsletter-signup h4 {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 28px;
  color: #fff;
}
.form .form-container .contact-info .newsletter-signup p {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}
.form .form-container .main-form label {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 13px;
  color: #8D8D8D;
}
.form .form-container .main-form .form-control,
.form .form-container .main-form .form-select {
  border: 0;
  border-bottom: 1px solid #8D8D8D;
  border-radius: 0;
}
.form .form-container .main-form .form-control:focus,
.form .form-container .main-form .form-select:focus {
  box-shadow: none;
  border-color: #0433B9;
}
.form .form-container .main-form select {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #8d8d8d;
}

footer .nav-link {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  color: #333;
}
footer .nav-link:hover {
  color: #0433B9;
}
footer .lower {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  color: #767676;
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #e02d2a;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.parsley-errors-list {
  margin: 2px 0 3px;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  color: #e00f0b;
  transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
  margin-top: 6px;
}

body.page-about {
  background: #fff;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
  background: linear-gradient(165deg, #e4ecfc 0%, #f3ecfa 32%, #fafdff 70%, #ffffff 100%);
}
.about-hero::before {
  content: url("../img/mandala2.svg");
  position: absolute;
  right: -10%;
  top: -8%;
  width: min(78vw, 680px);
  height: auto;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-8deg);
}
.about-hero::after {
  content: url("../img/mandala.svg");
  position: absolute;
  left: -14%;
  bottom: -18%;
  width: min(50vw, 400px);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero .about-hero__title {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 46px;
  color: #000;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 20ch;
}
@media (max-width: 575.98px) {
  .about-hero .about-hero__title {
    font-size: 30px;
    max-width: none;
  }
}
.about-hero .about-lead p {
  line-height: 1.65;
  max-width: 48rem;
}
.about-hero .about-hero__visual {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(0, 67, 179, 0.16);
  box-shadow: 0 22px 60px rgba(13, 30, 70, 0.2);
}
.about-hero .about-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(13, 26, 56, 0.28));
  pointer-events: none;
}
.about-hero .about-hero__visual img {
  min-height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-chip {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 12px;
  color: #0f2550;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(0, 67, 179, 0.16);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(239, 244, 255, 0.96));
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 67, 179, 0.1);
}
.about-section .container {
  position: relative;
  z-index: 1;
}
.about-section--soft {
  background: linear-gradient(128deg, rgba(246, 249, 255, 0.98) 0%, rgba(255, 247, 252, 0.92) 48%, rgba(236, 242, 255, 0.96) 100%);
}
.about-section--mandala::before {
  content: url("../img/mandala2.svg");
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: min(96vw, 880px);
  height: auto;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
}
.about-section--mandala-alt {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}
.about-section--mandala-alt::before {
  content: url("../img/mandala.svg");
  position: absolute;
  right: -5%;
  top: 8%;
  width: min(44vw, 380px);
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  transform: rotate(12deg);
}
.about-section--last {
  border-bottom: 1px solid rgba(0, 67, 179, 0.1);
}
.about-section .head {
  letter-spacing: -0.02em;
}
.about-section .head::after {
  content: "";
  display: block;
  width: 4.25rem;
  height: 3px;
  margin-top: 0.65rem;
  border-radius: 2px;
  background: linear-gradient(90deg, #0043b3, #c04cc0);
}
.about-section .text-center .head::after {
  margin-left: auto;
  margin-right: auto;
}

.about-section__lead {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 17px;
  color: #333;
  line-height: 1.65;
  max-width: 44rem;
  margin-bottom: 1.25rem;
}

.about-label {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 11px;
  color: #0043b3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  display: inline-block;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(0, 67, 179, 0.1), rgba(192, 76, 192, 0.12));
  border: 1px solid rgba(0, 67, 179, 0.12);
}

.about-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 67, 179, 0.14) !important;
  box-shadow: 0 12px 40px rgba(18, 37, 77, 0.08);
  background: linear-gradient(155deg, #ffffff 0%, #f3f6ff 55%, #fff9fd 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about-card::before {
  content: "";
  position: absolute;
  right: -28%;
  top: -32%;
  width: 75%;
  aspect-ratio: 1;
  background: url("../img/mandala.svg") center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.about-card .card-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem 1.35rem 1.75rem;
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(18, 37, 77, 0.12);
}
.about-card .card-title {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 22px;
  color: #000;
  margin: 0 0 0.75rem;
  padding-top: 0.85rem;
  border-top: 3px solid #0043b3;
}
.about-card--pink .card-title {
  border-top-color: #a545a5;
}
.about-card .card-text {
  line-height: 1.62;
}

.about-feature-image {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(0, 67, 179, 0.14);
  box-shadow: 0 14px 45px rgba(13, 30, 70, 0.12);
}
.about-feature-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 36, 74, 0.05), rgba(16, 36, 74, 0.3));
  pointer-events: none;
}
.about-feature-image img,
.about-feature-image video {
  min-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-mini-card {
  border-radius: 16px;
  border: 1px solid rgba(0, 67, 179, 0.14) !important;
  background: linear-gradient(140deg, #fff 0%, #f5f8ff 100%);
  box-shadow: 0 8px 30px rgba(17, 32, 70, 0.08);
}
.about-mini-card .card-body {
  padding: 1rem 1rem 1.1rem;
}
.about-mini-card .card-title {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 22px;
  color: #111;
  margin: 0 0 0.45rem;
}
.about-mini-card .card-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.about-mini-card--blue {
  border-color: rgba(0, 67, 179, 0.2);
  background: linear-gradient(140deg, #e3f2fd 0%, #f5f8ff 100%);
}

.about-mini-card--purple {
  border-color: rgba(192, 76, 192, 0.2);
  background: linear-gradient(140deg, #f3e5f5 0%, #f5f8ff 100%);
}

.about-mini-card--green {
  border-color: rgba(76, 175, 80, 0.2);
  background: linear-gradient(140deg, #e8f5e8 0%, #f5f8ff 100%);
}

.about-mini-card--orange {
  border-color: rgba(255, 152, 0, 0.2);
  background: linear-gradient(140deg, #fff3e0 0%, #f5f8ff 100%);
}

.about-mini-card.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(17, 32, 70, 0.12);
}

.about-capability {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 67, 179, 0.12) !important;
  box-shadow: 0 10px 38px rgba(12, 32, 70, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about-capability:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(12, 32, 70, 0.14);
}

.about-capability__image {
  width: 100%;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-capability__body .card-title {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 24px;
  color: #121212;
  margin: 0 0 0.55rem;
}
.about-capability__body .card-text {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list > li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.7rem;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 16px;
  color: #333;
  line-height: 1.55;
}
.about-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0043b3, #a545a5);
}
.about-list > li:last-child {
  margin-bottom: 0;
}
.about-list strong {
  font-weight: 600;
  color: #191919;
}
.about-list--on-dark > li {
  color: rgba(255, 255, 255, 0.9);
}
.about-list--on-dark > li::before {
  background: linear-gradient(135deg, #7eb0ff, #e8a8ff);
}

.about-track {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #0a1530 0%, #12254d 38%, #1a0f28 100%);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.about-track::before {
  content: url("../img/mandala2.svg");
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(110vw, 900px);
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}
.about-track .container {
  position: relative;
  z-index: 1;
}
.about-track .about-track__tagline {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.about-track .head {
  color: #fff;
}
.about-track .head::after {
  background: linear-gradient(90deg, rgba(126, 176, 255, 0.95), rgba(232, 168, 255, 0.9));
}

.about-stat {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  --bs-card-bg: transparent;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(124, 152, 224, 0.14));
}
.about-stat::before {
  content: "";
  position: absolute;
  right: -30%;
  top: -35%;
  width: 85%;
  aspect-ratio: 1;
  background: url("../img/mandala.svg") center/contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.about-stat .card-body {
  position: relative;
  z-index: 1;
}
.about-stat .card-text {
  color: rgba(255, 255, 255, 0.84);
}

.about-stat__value {
  font-family: "Gilda Display";
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.about-stat__label {
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.about-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 67, 179, 0.1);
  background: linear-gradient(185deg, #eef3ff 0%, #ffffff 65%);
}
.about-cta::before {
  content: url("../img/mandala.svg");
  position: absolute;
  left: 50%;
  bottom: -20%;
  transform: translateX(-50%);
  width: min(70vw, 480px);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.about-cta .container {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .about-card.card:hover {
    transform: none;
  }
  .about-capability.card:hover {
    transform: none;
  }
}/*# sourceMappingURL=about.css.map */