.btn {
  border-radius: 50px;
  padding: 0.25rem 1rem;
  font-weight: 500;
  font-size: inherit;
}
.btn:focus {
  box-shadow: none;
}

@media screen and (min-width: 992px) {
  .btn-md {
    padding: 0.5rem 2rem;
    font-size: calc(1.255rem + 0.06vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-md {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 992px) {
  .btn-lg {
    padding: 1rem 5rem;
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-lg {
    font-size: 1.5rem;
  }
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #8e35ff;
  color: #8e35ff;
}
.btn-outline-primary:hover {
  background-color: #8e35ff;
  color: #fff;
}

.btn-outline-primary-dark {
  background-color: transparent;
  border: 1px solid #6e2cff;
  color: #6e2cff;
}
.btn-outline-primary-dark:hover {
  background-color: #6e2cff;
  color: #fff;
}

.btn-outline-navy {
  background-color: transparent;
  border: 1px solid #020b30;
  color: #020b30;
}
.btn-outline-navy:hover {
  background-color: #020b30;
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #fff;
}

.btn-outline-text {
  background-color: transparent;
  border: 1px solid #5d6377;
  color: #5d6377;
}
.btn-outline-text:hover {
  background-color: #5d6377;
  color: #fff;
}

.btn-primary {
  background-color: #8e35ff;
  border: 1px solid #8e35ff;
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:disabled {
  background-color: #7102ff;
  color: #fff;
  border: 1px solid #7102ff;
}
.btn-primary:focus, .btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(142, 53, 255, 0.5);
}

.btn-primary-dark {
  background-color: #6e2cff;
  border: 1px solid #6e2cff;
  color: #fff;
}
.btn-primary-dark:hover, .btn-primary-dark:active, .btn-primary-dark:focus, .btn-primary-dark:disabled {
  background-color: #4e00f8;
  color: #fff;
  border: 1px solid #4e00f8;
}
.btn-primary-dark:focus, .btn-primary-dark:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(110, 44, 255, 0.5);
}

.btn-navy {
  background-color: #020b30;
  border: 1px solid #020b30;
  color: #fff;
}
.btn-navy:hover, .btn-navy:active, .btn-navy:focus, .btn-navy:disabled {
  background-color: black;
  color: #fff;
  border: 1px solid black;
}
.btn-navy:focus, .btn-navy:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(2, 11, 48, 0.5);
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #fff;
}
.btn-white:hover, .btn-white:active, .btn-white:focus, .btn-white:disabled {
  background-color: #e6e6e6;
  color: #fff;
  border: 1px solid #e6e6e6;
}
.btn-white:focus, .btn-white:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.btn-text {
  background-color: #5d6377;
  border: 1px solid #5d6377;
  color: #fff;
}
.btn-text:hover, .btn-text:active, .btn-text:focus, .btn-text:disabled {
  background-color: #474b5a;
  color: #fff;
  border: 1px solid #474b5a;
}
.btn-text:focus, .btn-text:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(93, 99, 119, 0.5);
}

.njl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: linear-gradient(135deg, #6e2cff, #8e35ff);
  color: #fff;
  transition: 0.3s ease;
}
.njl-btn:hover {
  transform: translateY(-2px);
  color: #fff;
}

.njl-btn,
.njl-btn-outline {
  min-height: 70px;
  padding: 18px 42px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .njl-btn,
.njl-btn-outline {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: block;
    min-height: auto;
  }
}

.njl-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  text-decoration: none;
}
.njl-btn-outline:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.text-primary {
  color: #8e35ff !important;
}
.text-primary a {
  color: #8e35ff;
  font-weight: 500;
}
.text-primary a:hover {
  color: #7102ff;
}

.text-primary-dark {
  color: #6e2cff !important;
}
.text-primary-dark a {
  color: #6e2cff;
  font-weight: 500;
}
.text-primary-dark a:hover {
  color: #4e00f8;
}

.text-navy {
  color: #020b30 !important;
}
.text-navy a {
  color: #020b30;
  font-weight: 500;
}
.text-navy a:hover {
  color: black;
}

.text-white {
  color: #fff !important;
}
.text-white a {
  color: #fff;
  font-weight: 500;
}
.text-white a:hover {
  color: #e6e6e6;
}

.text-text {
  color: #5d6377 !important;
}
.text-text a {
  color: #5d6377;
  font-weight: 500;
}
.text-text a:hover {
  color: #474b5a;
}

.bg-primary {
  background-color: #8e35ff;
}

.bg-primary-dark {
  background-color: #6e2cff;
}

.bg-navy {
  background-color: #020b30;
}

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

.bg-text {
  background-color: #5d6377;
}

.map {
  min-height: 500px;
  width: 100%;
}

label {
  font-size: 1rem;
  font-weight: 500;
}
label.form-check-label {
  font-weight: 400;
}

.form-control,
.form-check-input[type=checkbox] {
  border-radius: 0;
}

.form-check .wpcf7-list-item {
  margin: 0;
  display: inline;
}

span.wpcf7-not-valid-tip {
  font-size: 0.9rem;
}

.wpcf7-list-item {
  width: 100%;
  position: relative;
  display: inline;
  margin: 0 !important;
}
.wpcf7-list-item input[type=checkbox] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: 8px;
  margin-top: 14px;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  color: #fff;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  transform: rotate(-45deg) scale(1);
}
.wpcf7-list-item input[type=checkbox]:focus + label::before {
  outline: 0;
}
.wpcf7-list-item label {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding-left: 35px;
  margin-bottom: 1rem;
  font-weight: 400;
  cursor: pointer;
  vertical-align: sub;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 300;
}
.wpcf7-list-item label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px 4px 4px 0;
  width: 22px;
  height: 22px;
  transition: transform 0.28s ease;
  border-radius: 0px;
  border: 1px solid #fff;
  background-color: #fff;
}
.wpcf7-list-item .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #020b30;
  border-left: 2px solid #020b30;
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  will-change: transform;
  position: absolute;
  top: 12px;
  left: 6px;
}
.wpcf7-list-item .wpcf7-list-item-label span {
  font-weight: 500;
  font-size: 12px;
  color: #020b30;
}
.wpcf7-list-item .wpcf7-list-item-label span a {
  color: #020b30;
  text-decoration: underline;
}
.wpcf7-list-item .wpcf7-list-item-label span a:hover {
  text-decoration: underline;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 1rem;
  border: 0;
  text-align: center;
  font-size: 1.4em;
}

header {
  background: #020b30;
  position: relative;
  z-index: 100;
  padding: 1.5rem 0;
}
header .header-inner {
  min-height: 110px;
}
header .site-logo img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 1199px) {
  header .site-logo img {
    max-width: 300px;
  }
}
header .header-right {
  gap: 3rem;
}
@media screen and (max-width: 1199px) {
  header .header-right {
    gap: 1rem;
  }
}
header .main-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1199px) {
  header .main-menu {
    gap: 2rem;
  }
}
header .main-menu li.menu-item.menu-item-type-custom.menu-item-object-custom.current-menu-item.current_page_item.menu-item-181 a:after {
  display: none;
}
header .main-menu li {
  position: relative;
}
header .main-menu li.current-menu-item > a:after, header .main-menu li.current_page_item > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 3px;
  background: #8e35ff;
}
header .main-menu li.menu-item-has-children > a:before {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
  margin-left: 8px;
  float: right;
}
header .main-menu a {
  position: relative;
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s ease;
}
header .main-menu a:hover {
  color: #8e35ff;
}
@media screen and (max-width: 1199px) {
  header .main-menu a {
    font-size: 15px;
  }
}
header .njl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 18px 34px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 10px;
  background: linear-gradient(135deg, #6e2cff 0%, #a03cff 100%);
  transition: 0.3s ease;
}
header .njl-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}
@media screen and (max-width: 1199px) {
  header .njl-btn {
    padding: 14px 19px;
    font-size: 15px;
    min-height: 55px;
  }
}
header .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  border: 0;
  background: none;
}
header .mobile-menu-toggle span {
  width: 30px;
  height: 3px;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 991px) {
  header .main-nav,
header .njl-btn {
    display: none !important;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
  header .site-logo img {
    max-width: 220px;
  }
  header .header-inner {
    min-height: 80px;
  }
}

.offcanvas {
  background: #020b30;
  width: 60%;
}
@media screen and (max-width: 750px) {
  .offcanvas {
    width: 100%;
  }
}
.offcanvas .offcanvas-header {
  padding: 3rem 3rem 5rem;
}
@media screen and (max-width: 500px) {
  .offcanvas .offcanvas-header {
    padding: 1.5rem 1.5rem 5rem;
  }
}
.offcanvas .offcanvas-header .site-logo img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 399px) {
  .offcanvas .offcanvas-header .site-logo img {
    max-width: 200px;
  }
}
.offcanvas .offcanvas-header .btn-close {
  font-size: 20px;
}
.offcanvas .offcanvas-body {
  padding: 0rem 3rem 3rem;
}
@media screen and (max-width: 500px) {
  .offcanvas .offcanvas-body {
    padding: 0rem 1.5rem 3rem;
  }
}
.offcanvas .offcanvas-body .njl-btn {
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 60%;
  min-height: auto;
  margin-top: 0 !important;
}
@media screen and (max-width: 500px) {
  .offcanvas .offcanvas-body .njl-btn {
    width: 100%;
  }
}
.offcanvas .mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas .mobile-menu a {
  display: block;
  padding: 0 0 2rem;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

footer {
  background: #020b30;
  color: #fff;
  padding: 70px 0 45px;
}
@media screen and (max-width: 991px) {
  footer {
    padding: 40px 0 25px;
  }
}
footer .footerTop {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
footer .footerLogo {
  display: block;
  margin-bottom: 45px;
}
footer .footerLogo img {
  max-width: 295px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 991px) {
  footer .footerLogo img {
    margin: 0 auto;
    display: block;
  }
}
@media screen and (max-width: 500px) {
  footer .footerLogo img {
    max-width: 200px;
  }
}
footer .footerContact {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footerContact .email i {
  margin-top: -1.3rem;
}
@media screen and (max-width: 991px) {
  footer .footerContact .email i {
    margin-top: 0;
  }
}
footer .footerContact li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
}
footer .footerContact li:last-child {
  margin-bottom: 0;
}
footer .footerContact li .emailGroup {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
footer .footerContact li .emailGroup a {
  display: block;
}
@media screen and (max-width: 991px) {
  footer .footerContact li .emailGroup {
    align-items: center;
  }
}
@media screen and (max-width: 991px) {
  footer .footerContact li {
    text-align: center;
    display: block;
  }
}
footer .footerContact li i {
  width: 28px;
  color: #8e35ff;
  font-size: 22px;
}
@media screen and (max-width: 991px) {
  footer .footerContact li i {
    vertical-align: middle;
    margin-right: 6px;
  }
}
footer .footerContact li a {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  text-decoration: none;
}
footer .footerContact li a:hover {
  color: #8e35ff;
}
footer .footerCol {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0 30px;
}
@media screen and (max-width: 991px) {
  footer .footerCol {
    text-align: center;
  }
}
footer h6 {
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 32px;
}
@media screen and (max-width: 991px) {
  footer h6 {
    margin-bottom: 20px;
  }
}
footer h6:after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: #8e35ff;
  margin-top: 22px;
}
@media screen and (max-width: 991px) {
  footer h6:after {
    margin: 0 auto;
    margin-top: 22px;
  }
}
footer .footerMenu {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
footer .footerMenu li {
  margin-bottom: 24px;
}
footer .footerMenu li:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  footer .footerMenu li {
    margin-bottom: 10px;
  }
}
footer .footerMenu a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  footer .footerMenu a {
    display: block;
  }
}
footer .footerMenu a:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 991px) {
  footer .footerMenu a:after {
    margin-left: 10px;
  }
}
footer .footerMenu a:hover {
  color: #8e35ff;
}
footer .footerMenu a:hover:after {
  color: #8e35ff;
}
footer .footerText {
  margin-bottom: 40px;
}
footer .footerText p {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}
footer .njl-btn {
  min-width: 205px;
  min-height: 74px;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  footer .njl-btn {
    min-height: auto;
  }
}
footer .footerBottom {
  padding-top: 40px;
}
footer .footerBottom p,
footer .footerBottom a {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 15px;
  text-decoration: none;
}
footer .footerBottom a:hover {
  color: #8e35ff;
}
@media (max-width: 991px) {
  footer .footerCol {
    border-left: 0;
    padding-left: 15px;
  }
  footer .footerBottom .d-flex {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #5d6377;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

p,
a {
  font-family: inherit;
  line-height: inherit;
}

a {
  color: #020b30;
  text-decoration: none;
  transition: color ease 0.3s;
}
a:hover {
  color: #7102ff;
}

b,
strong {
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #020b30;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-heading {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
}

.section-heading {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
}

.section-subheading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8e35ff;
}

p {
  margin-bottom: 1.5rem;
}

#generic-content,
.normalise {
  overflow-x: hidden;
}
#generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
  font-size: calc(1.275rem + 0.3vw);
  line-height: calc(1.275rem + 0.3vw);
  color: #8e35ff;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 500;
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    line-height: 1.5rem;
  }
}
#generic-content p,
.normalise p {
  text-overflow: ellipsis;
  overflow: hidden;
}
#generic-content table,
.normalise table {
  width: 100%;
}
#generic-content table tbody,
#generic-content table td,
#generic-content table tfoot,
#generic-content table th,
#generic-content table thead,
#generic-content table tr,
.normalise table tbody,
.normalise table td,
.normalise table tfoot,
.normalise table th,
.normalise table thead,
.normalise table tr {
  border: 1px solid #020b30;
  padding: 0.5rem 0.5rem;
}
#generic-content ul li,
.normalise ul li {
  margin-bottom: 0.5rem;
}
#generic-content blockquote,
.normalise blockquote {
  background: #020b30;
  padding: 1rem 2rem;
  font-style: italic;
  border-left: 3px solid #8e35ff;
  font-size: 1rem;
  line-height: 1rem;
}
#generic-content *:last-child,
.normalise *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #generic-content iframe,
.normalise iframe {
    width: calc(100vw - 60px);
  }
}

.font-weight-thin {
  font-weight: 100 !important;
}

.font-weight-extra-light {
  font-weight: 200 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

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

.font-weight-semi-bold {
  font-weight: 600 !important;
}

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

.font-weight-extra-bold {
  font-weight: 800 !important;
}

.font-weight-black {
  font-weight: 900 !important;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.page-id-19 .grecaptcha-badge {
  visibility: visible !important;
  bottom: 100px !important;
  position: relative;
  z-index: 9;
}

section {
  position: relative;
  overflow: hidden;
}
section#welcomeSection {
  min-height: 720px;
  display: flex;
  align-items: center;
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #020b30;
}
section#welcomeSection:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 11, 48, 0.98) 0%, rgba(2, 11, 48, 0.9) 28%, rgba(2, 11, 48, 0.55) 48%, rgba(2, 11, 48, 0.1) 100%);
  z-index: 1;
}
section#welcomeSection .container {
  position: relative;
  z-index: 2;
}
section#welcomeSection .heroInner {
  min-height: 700px;
  display: flex;
  align-items: center;
}
section#welcomeSection .heroContent {
  max-width: 840px;
  padding: 40px 0;
}
section#welcomeSection .heroLabel {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#welcomeSection h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
section#welcomeSection .heroText {
  max-width: 650px;
  margin-bottom: 46px;
}
section#welcomeSection .heroText p {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 0;
  width: 89%;
}
@media screen and (max-width: 991px) {
  section#welcomeSection .heroText p {
    width: 100%;
  }
}
section#welcomeSection .heroButtons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  section#welcomeSection {
    min-height: auto;
  }
  section#welcomeSection .heroInner {
    min-height: auto;
  }
  section#welcomeSection .heroContent {
    max-width: 100%;
  }
  section#welcomeSection h1 {
    font-size: 54px;
  }
}
@media (max-width: 767px) {
  section#welcomeSection .heroInner {
    min-height: 600px;
  }
  section#welcomeSection h1 {
    font-size: 42px;
  }
  section#welcomeSection .heroText p {
    font-size: 18px;
  }
  section#welcomeSection .heroButtons {
    flex-direction: column;
    align-items: stretch;
  }
  section#welcomeSection .njl-btn,
section#welcomeSection .njl-btn-outline {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    display: block;
    min-height: auto;
  }
}
section#servicesSection {
  padding: 70px 0;
  background: #f8f7ff;
}
section#servicesSection:before, section#servicesSection:after {
  content: "";
  position: absolute;
  width: 330px;
  height: 180px;
  background-image: radial-gradient(#8e35ff 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.22;
  z-index: 1;
}
section#servicesSection:before {
  top: 70px;
  left: -90px;
  transform: rotate(8deg);
}
section#servicesSection:after {
  top: 155px;
  right: -110px;
  transform: rotate(-12deg);
}
section#servicesSection .container {
  position: relative;
  z-index: 2;
}
section#servicesSection .sectionIntro {
  margin: 0 auto 70px;
}
section#servicesSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#servicesSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: #020b30;
  margin-bottom: 28px;
}
section#servicesSection .sectionText {
  max-width: 781px;
  margin: 0 auto;
}
section#servicesSection .sectionText p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.65;
  color: #30384f;
  margin-bottom: 0;
}
section#servicesSection .servicesCards {
  margin-left: -12px;
  margin-right: -12px;
}
section#servicesSection .servicesCards > div {
  padding-left: 12px;
  padding-right: 12px;
}
section#servicesSection .serviceCard {
  height: 100%;
  min-height: 435px;
  padding: 46px 15px 38px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(2, 11, 48, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#servicesSection .serviceIcon {
  height: 105px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#servicesSection .serviceIcon img {
  max-height: 100px;
  max-width: 105px;
  object-fit: contain;
}
section#servicesSection .serviceCard h3 {
  font-family: "Poppins", sans-serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
  color: #020b30;
  margin-bottom: 32px;
}
section#servicesSection .serviceCard p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #30384f;
  margin-bottom: 20px;
}
section#servicesSection .serviceLink {
  margin-top: auto;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #8e35ff;
  text-transform: uppercase;
  text-decoration: none;
}
section#servicesSection .serviceLink:hover {
  color: #020b30;
}
@media (max-width: 1199px) {
  section#servicesSection .serviceCard {
    min-height: 410px;
  }
}
@media (max-width: 767px) {
  section#servicesSection {
    padding: 40px 0;
  }
  section#servicesSection .sectionIntro {
    margin-bottom: 45px;
  }
  section#servicesSection h2 {
    font-size: 36px;
  }
  section#servicesSection .sectionText p {
    font-size: 18px;
  }
  section#servicesSection .serviceCard h3 {
    font-size: 24px;
  }
}
section#whyChooseSection {
  padding: 90px 0;
  background: #020b30;
  color: #fff;
}
section#whyChooseSection:before, section#whyChooseSection:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 260px;
  background-image: radial-gradient(#8e35ff 1px, transparent 1px);
  background-size: 12px 12px;
  opacity: 0.35;
  z-index: 1;
}
section#whyChooseSection:before {
  left: -120px;
  bottom: 40px;
  transform: rotate(16deg);
}
section#whyChooseSection:after {
  right: -120px;
  bottom: 0;
  transform: rotate(-14deg);
}
section#whyChooseSection .container {
  position: relative;
  z-index: 2;
}
section#whyChooseSection .sectionIntro {
  max-width: 850px;
  margin: 0 auto 85px;
}
section#whyChooseSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#whyChooseSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 28px;
}
section#whyChooseSection .sectionText {
  max-width: 760px;
  margin: 0 auto;
}
section#whyChooseSection .sectionText p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 0;
}
section#whyChooseSection .whyChooseItems {
  text-align: center;
}
section#whyChooseSection .whyChooseItems > div {
  position: relative;
}
section#whyChooseSection .whyChooseItems > div:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.22);
}
section#whyChooseSection .whyChooseItem {
  max-width: 310px;
  margin: 0 auto;
  padding: 0 16px;
}
section#whyChooseSection .whyChooseIcon {
  width: 150px;
  height: 150px;
  margin: 0 auto 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#whyChooseSection .whyChooseIcon img {
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
}
section#whyChooseSection h3 {
  font-family: "Poppins", sans-serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 26px;
}
section#whyChooseSection .whyChooseLine {
  display: block;
  width: 44px;
  height: 3px;
  background: #8e35ff;
  margin: 0 auto 26px;
}
section#whyChooseSection .whyChooseItem p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
@media (max-width: 991px) {
  section#whyChooseSection {
    padding: 60px 0;
  }
  section#whyChooseSection .sectionIntro {
    margin-bottom: 60px;
  }
  section#whyChooseSection .whyChooseItems {
    row-gap: 60px;
  }
  section#whyChooseSection .whyChooseItems > div:after {
    display: none;
  }
}
@media (max-width: 767px) {
  section#whyChooseSection h2 {
    font-size: 40px;
  }
  section#whyChooseSection .sectionLabel {
    font-size: 16px;
  }
  section#whyChooseSection .sectionText p {
    font-size: 18px;
  }
  section#whyChooseSection .whyChooseItem p {
    font-size: 17px;
  }
}
section#aboutSection {
  padding: 90px 0 100px;
  background: #fbfaff;
}
section#aboutSection:before {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -120px;
  width: 520px;
  height: 318px;
  background-image: radial-gradient(#8e35ff 1.4px, transparent 1.4px);
  background-size: 13px 13px;
  opacity: 0.28;
  transform: rotate(16deg);
  z-index: 1;
}
section#aboutSection .container {
  position: relative;
  z-index: 2;
}
section#aboutSection .aboutContent {
  max-width: 620px;
}
section#aboutSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#aboutSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(48px, 5vw, 62px);
  font-weight: 600;
  line-height: 1.18;
  color: #020b30;
  margin-bottom: 35px;
}
section#aboutSection .sectionLine {
  display: block;
  width: 72px;
  height: 4px;
  background: #8e35ff;
  margin-bottom: 44px;
}
section#aboutSection .aboutText {
  max-width: 620px;
  margin-bottom: 42px;
}
section#aboutSection .aboutText p {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: #30384f;
  margin-bottom: 20px;
}
section#aboutSection .aboutText p:last-child {
  margin-bottom: 0;
}
section#aboutSection .aboutImage {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(2, 11, 48, 0.12);
}
section#aboutSection .aboutImage img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  section#aboutSection {
    padding: 50px 0;
  }
  section#aboutSection .aboutContent {
    max-width: 100%;
  }
  section#aboutSection .aboutText {
    max-width: 100%;
  }
  section#aboutSection .aboutImage img {
    height: 460px;
  }
}
@media (max-width: 767px) {
  section#aboutSection {
    padding: 40px 0;
  }
  section#aboutSection .sectionLabel {
    font-size: 18px;
  }
  section#aboutSection h2 {
    font-size: 42px;
  }
  section#aboutSection .aboutText p {
    font-size: 18px;
  }
  section#aboutSection .aboutImage img {
    height: 340px;
  }
}
section#footerCtaSection {
  padding: 30px 0;
  background: #020b30;
}
section#footerCtaSection .footerCta {
  position: relative;
  overflow: hidden;
  padding: 58px 80px;
  border-radius: 16px;
  border: 1px solid rgba(142, 53, 255, 0.4);
  background-image: url("/wp-content/uploads/2026/06/footer-cta-img-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.25);
}
section#footerCtaSection .footerCta .row {
  position: relative;
  z-index: 2;
}
section#footerCtaSection .footerCtaIcon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5120d9, #9a35ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
section#footerCtaSection .footerCtaIcon img {
  max-width: 62px;
  max-height: 62px;
  object-fit: contain;
}
section#footerCtaSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4vw, 40px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
section#footerCtaSection .footerCtaText {
  max-width: 660px;
}
section#footerCtaSection .footerCtaText p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}
section#footerCtaSection .njl-btn {
  min-height: 84px;
  padding: 24px 40px;
  font-size: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 1399px) {
  section#footerCtaSection .footerCta {
    padding: 45px 35px;
  }
}
@media screen and (max-width: 1199px) {
  section#footerCtaSection .footerCtaIcon {
    width: 90px;
    height: 90px;
  }
  section#footerCtaSection .njl-btn {
    width: 100%;
    min-height: 64px;
    font-size: 16px;
    padding: 18px 24px;
  }
}
@media (max-width: 991px) {
  section#footerCtaSection .footerCtaIcon {
    width: 105px;
    height: 105px;
  }
  section#footerCtaSection .footerCtaText p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  section#footerCtaSection {
    padding-top: 40px;
  }
  section#footerCtaSection .footerCta {
    padding: 35px 25px;
  }
  section#footerCtaSection h2 {
    font-size: 32px;
  }
}
section#aboutHeroSection {
  min-height: 640px;
  display: flex;
  align-items: center;
  background-color: #020b30;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
section#aboutHeroSection:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 11, 48, 0.98) 0%, rgba(2, 11, 48, 0.92) 31%, rgba(2, 11, 48, 0.52) 50%, rgba(2, 11, 48, 0.05) 100%);
  z-index: 1;
}
section#aboutHeroSection .container {
  position: relative;
  z-index: 2;
}
section#aboutHeroSection .aboutHeroInner {
  min-height: 640px;
  display: flex;
  align-items: center;
}
section#aboutHeroSection .aboutHeroContent {
  max-width: 720px;
  padding: 55px 0;
}
section#aboutHeroSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#aboutHeroSection h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(52px, 4.7vw, 82px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 34px;
}
section#aboutHeroSection .sectionLine {
  display: block;
  width: 86px;
  height: 4px;
  background: #8e35ff;
  margin-bottom: 42px;
}
section#aboutHeroSection .aboutHeroText {
  max-width: 585px;
  margin-bottom: 44px;
}
section#aboutHeroSection .aboutHeroText p {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  section#aboutHeroSection {
    background-position: center;
  }
  section#aboutHeroSection:before {
    background: rgba(2, 11, 48, 0.75);
  }
  section#aboutHeroSection .aboutHeroContent {
    max-width: 100%;
  }
  section#aboutHeroSection h1 {
    font-size: 54px;
  }
}
@media (max-width: 767px) {
  section#aboutHeroSection {
    min-height: 560px;
  }
  section#aboutHeroSection .aboutHeroInner {
    min-height: 560px;
  }
  section#aboutHeroSection .sectionLabel {
    font-size: 18px;
  }
  section#aboutHeroSection h1 {
    font-size: 42px;
  }
  section#aboutHeroSection .aboutHeroText p {
    font-size: 18px;
  }
}
section#aboutSupportSection {
  padding: 85px 0 95px;
  background: #fbfaff;
}
section#aboutSupportSection:before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -140px;
  width: 520px;
  height: 360px;
  background-image: radial-gradient(#8e35ff 1.3px, transparent 1.3px);
  background-size: 13px 13px;
  opacity: 0.25;
  transform: rotate(12deg);
  z-index: 1;
}
section#aboutSupportSection:after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -90px;
  width: 430px;
  height: 300px;
  background-image: radial-gradient(#8e35ff 1.2px, transparent 1.2px);
  background-size: 13px 13px;
  opacity: 0.18;
  transform: rotate(-14deg);
  z-index: 1;
}
section#aboutSupportSection .container {
  position: relative;
  z-index: 2;
}
section#aboutSupportSection .supportImage {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(2, 11, 48, 0.1);
}
section#aboutSupportSection .supportImage img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
}
section#aboutSupportSection .supportContent {
  max-width: 560px;
}
section#aboutSupportSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#aboutSupportSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(44px, 4.5vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  color: #020b30;
  margin-bottom: 20px;
}
section#aboutSupportSection .sectionLine {
  display: block;
  width: 72px;
  height: 4px;
  background: #8e35ff;
  margin-bottom: 25px;
}
section#aboutSupportSection .supportText {
  margin-bottom: 30px;
}
section#aboutSupportSection .supportText p {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  line-height: 1.75;
  color: #26314c;
  margin-bottom: 28px;
}
section#aboutSupportSection .supportText p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  section#aboutSupportSection {
    padding: 50px 0;
  }
  section#aboutSupportSection .supportImage img {
    height: 460px;
  }
  section#aboutSupportSection .supportContent {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  section#aboutSupportSection h2 {
    font-size: 40px;
  }
  section#aboutSupportSection .supportImage img {
    height: 340px;
  }
  section#aboutSupportSection .supportText p {
    font-size: 18px;
  }
}
section#reviewsSection {
  padding: 100px 0 110px;
  background: #020b30;
  color: #fff;
}
section#reviewsSection:before, section#reviewsSection:after {
  content: "";
  position: absolute;
  width: 520px;
  height: 360px;
  background-image: radial-gradient(#8e35ff 1.2px, transparent 1.2px);
  background-size: 12px 12px;
  opacity: 0.28;
  z-index: 1;
}
section#reviewsSection:before {
  left: -160px;
  bottom: 120px;
  transform: rotate(18deg);
}
section#reviewsSection:after {
  right: -160px;
  bottom: 80px;
  transform: rotate(-16deg);
}
section#reviewsSection .container {
  position: relative;
  z-index: 2;
}
section#reviewsSection .sectionIntro {
  margin: 0 auto 55px;
}
section#reviewsSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#reviewsSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 5vw, 55px);
  font-weight: 600;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 26px;
}
section#reviewsSection .sectionLine {
  display: block;
  width: 70px;
  height: 3px;
  background: #8e35ff;
  margin: 0 auto 28px;
}
section#reviewsSection .sectionText {
  max-width: 760px;
  margin: 0 auto;
}
section#reviewsSection .sectionText p {
  font-size: 21px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}
section#reviewsSection .reviewsCards {
  margin-bottom: 75px;
}
section#reviewsSection .reviewCard {
  height: 100%;
  padding: 36px 40px;
  text-align: center;
  border: 1px solid rgba(142, 53, 255, 0.5);
  border-radius: 12px;
  background: rgba(6, 17, 63, 0.72);
}
section#reviewsSection .quoteIcon {
  color: #8e35ff;
  font-size: 35px;
  margin-bottom: 20px;
}
section#reviewsSection .stars {
  color: #ffb628;
  font-size: 25px;
  letter-spacing: 3px;
  margin-bottom: 28px;
}
section#reviewsSection .reviewText {
  padding-bottom: 34px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(142, 53, 255, 0.35);
}
section#reviewsSection .reviewText p {
  font-size: 20px;
  line-height: 1.55;
  color: #fff;
  margin-bottom: 0;
}
section#reviewsSection .reviewClient {
  display: flex;
  align-items: center;
  text-align: left;
  gap: 22px;
}
section#reviewsSection .clientIcon,
section#reviewsSection .statIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}
section#reviewsSection .clientIcon img,
section#reviewsSection .statIcon img {
  max-width: 80px;
  max-height: 80px;
}
section#reviewsSection .reviewClient h3,
section#reviewsSection .statItem h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
section#reviewsSection .reviewClient p,
section#reviewsSection .statItem p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
section#reviewsSection .reviewsStats {
  margin: 0 auto;
}
section#reviewsSection .reviewsStats .row > div {
  position: relative;
}
section#reviewsSection .reviewsStats .row > div:not(:last-child):after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.28);
}
section#reviewsSection .statItem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
section#reviewsSection .statItem h3 {
  font-size: 34px;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  section#reviewsSection .reviewsStats .row > div:after {
    display: none;
  }
}
@media (max-width: 991px) {
  section#reviewsSection {
    padding: 50px 0;
  }
  section#reviewsSection .reviewsCards {
    margin-bottom: 30px;
  }
  section#reviewsSection .statItem {
    justify-content: left;
  }
}
section#aboutSplitSection {
  background: #fbfaff;
}
section#aboutSplitSection .aboutSplitBlock {
  height: 100%;
  padding: 50px 45px;
  border-right: 1px solid rgba(2, 11, 48, 0.08);
}
section#aboutSplitSection .aboutSplitContent {
  max-width: 440px;
}
section#aboutSplitSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#aboutSplitSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 2vw, 15px);
  font-weight: 600;
  line-height: 1.2;
  color: #020b30;
  margin-bottom: 20px;
}
section#aboutSplitSection .sectionLine {
  display: block;
  width: 52px;
  height: 3px;
  background: #8e35ff;
  margin-bottom: 30px;
}
section#aboutSplitSection .aboutSplitText {
  margin-bottom: 38px;
}
section#aboutSplitSection .aboutSplitText p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #24304a;
  margin-bottom: 18px;
}
section#aboutSplitSection .aboutSplitImage {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(2, 11, 48, 0.12);
}
section#aboutSplitSection .aboutSplitImage img {
  width: 100%;
  height: 445px;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 1399px) {
  section#aboutSplitSection .aboutSplitContent {
    max-width: none;
  }
}
@media (max-width: 1199px) {
  section#aboutSplitSection .aboutSplitBlock {
    padding: 70px 35px;
  }
}
@media (max-width: 991px) {
  section#aboutSplitSection .aboutSplitBlock {
    padding: 60px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(2, 11, 48, 0.08);
  }
  section#aboutSplitSection .aboutSplitContent {
    max-width: 100%;
  }
}
section#servicesHeroSection {
  min-height: 740px;
  display: flex;
  align-items: center;
  background-color: #020b30;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
section#servicesHeroSection:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 11, 48, 0.98) 0%, rgba(2, 11, 48, 0.93) 30%, rgba(2, 11, 48, 0.48) 52%, rgba(2, 11, 48, 0.05) 100%);
  z-index: 1;
}
section#servicesHeroSection .container {
  position: relative;
  z-index: 3;
}
section#servicesHeroSection .servicesHeroInner {
  min-height: 740px;
  display: flex;
  align-items: center;
}
section#servicesHeroSection .servicesHeroContent {
  max-width: 760px;
  padding: 50px 0 70px;
}
section#servicesHeroSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#servicesHeroSection .sectionLine {
  display: block;
  width: 86px;
  height: 3px;
  background: #8e35ff;
  margin-bottom: 20px;
}
section#servicesHeroSection h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(54px, 4.6vw, 82px);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 30px;
}
section#servicesHeroSection h1 span,
section#servicesHeroSection h1 strong {
  color: #8e35ff;
}
section#servicesHeroSection .servicesHeroText {
  max-width: 590px;
  margin-bottom: 34px;
}
section#servicesHeroSection .servicesHeroText p {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}
section#servicesHeroSection .servicesHeroPoints {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
}
section#servicesHeroSection .servicesHeroPoints li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
section#servicesHeroSection .servicesHeroPoints .pointIcon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: rgba(142, 53, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
section#servicesHeroSection .servicesHeroPoints .pointIcon i {
  font-size: 22px;
  color: #fff;
}
section#servicesHeroSection .servicesHeroPoints i {
  color: #8e35ff;
  font-size: 18px;
}
section#servicesHeroSection .servicesHeroButtons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  section#servicesHeroSection {
    background-position: center;
  }
  section#servicesHeroSection:before {
    background: rgba(2, 11, 48, 0.76);
  }
  section#servicesHeroSection .servicesHeroContent {
    max-width: 100%;
  }
  section#servicesHeroSection h1 {
    font-size: 54px;
  }
}
@media (max-width: 767px) {
  section#servicesHeroSection {
    min-height: 650px;
  }
  section#servicesHeroSection .servicesHeroInner {
    min-height: 650px;
  }
  section#servicesHeroSection .sectionLabel {
    font-size: 18px;
  }
  section#servicesHeroSection h1 {
    font-size: 42px;
  }
  section#servicesHeroSection .servicesHeroText p {
    font-size: 18px;
  }
  section#servicesHeroSection .servicesHeroButtons {
    flex-direction: column;
    align-items: stretch;
  }
  section#servicesHeroSection .njl-btn,
section#servicesHeroSection .njl-btn-outline {
    width: 100%;
  }
}
section#servicesListSection {
  background: #fbfaff;
}
section#servicesListSection .serviceBlock {
  padding: 60px 0;
}
section#servicesListSection .serviceBlock:nth-child(even) {
  margin-left: calc((100vw - 100%) / -2);
  margin-right: calc((100vw - 100%) / -2);
  padding-left: calc((100vw - 100%) / 2);
  padding-right: calc((100vw - 100%) / 2);
  background: #f3f1f8;
}
section#servicesListSection .serviceBlockImage {
  border-radius: 12px;
  overflow: hidden;
}
section#servicesListSection .serviceBlockImage img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
}
section#servicesListSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #8e35ff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
section#servicesListSection .sectionLabel:after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: #8e35ff;
  margin-top: 10px;
}
section#servicesListSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: #020b30;
  margin-bottom: 20px;
}
section#servicesListSection .serviceBlockText {
  margin-bottom: 26px;
}
section#servicesListSection .serviceBlockText p {
  font-size: 16px;
  line-height: 1.8;
  color: #26314c;
  margin-bottom: 0;
}
section#servicesListSection .serviceFeatures {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 14px;
}
section#servicesListSection .serviceFeatures li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #020b30;
}
section#servicesListSection .serviceFeatures i {
  color: #8e35ff;
  font-size: 20px;
}
@media (max-width: 991px) {
  section#servicesListSection .serviceBlockContent {
    max-width: 100%;
  }
  section#servicesListSection .serviceBlockImage img {
    height: 360px;
  }
}
@media (max-width: 575px) {
  section#servicesListSection .serviceFeatures {
    grid-template-columns: 1fr;
  }
  section#servicesListSection .serviceBlockImage img {
    height: 280px;
  }
}
section#contactHeroSection {
  padding: 95px 0 80px;
  background: #fbfaff;
}
section#contactHeroSection:before {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -120px;
  width: 420px;
  height: 300px;
  background-image: radial-gradient(#8e35ff 1.2px, transparent 1.2px);
  background-size: 13px 13px;
  opacity: 0.2;
  transform: rotate(12deg);
  z-index: 1;
}
section#contactHeroSection .container {
  position: relative;
  z-index: 2;
}
section#contactHeroSection .contactHeroContent {
  max-width: 620px;
}
section#contactHeroSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#contactHeroSection .sectionLabel:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #8e35ff;
  margin-top: 12px;
}
section#contactHeroSection h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  color: #020b30;
  margin-bottom: 28px;
}
section#contactHeroSection .contactText {
  max-width: 430px;
  margin-bottom: 36px;
}
section#contactHeroSection .contactText p {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  line-height: 1.65;
  color: #26314c;
  margin-bottom: 0;
}
section#contactHeroSection .contactFormBox {
  padding: 32px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(2, 11, 48, 0.08);
}
section#contactHeroSection form p {
  margin: 0;
}
section#contactHeroSection form br {
  display: none;
}
section#contactHeroSection .wpcf7 .row {
  margin-left: -10px;
  margin-right: -10px;
}
section#contactHeroSection .wpcf7 .row > div {
  padding-left: 10px;
  padding-right: 10px;
}
section#contactHeroSection .wpcf7 label {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #020b30;
  margin-bottom: 20px;
}
section#contactHeroSection .wpcf7 input,
section#contactHeroSection .wpcf7 select,
section#contactHeroSection .wpcf7 textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(2, 11, 48, 0.18);
  border-radius: 5px;
  padding: 14px 18px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #020b30;
  background: #fff;
}
section#contactHeroSection .wpcf7 input::placeholder,
section#contactHeroSection .wpcf7 select::placeholder,
section#contactHeroSection .wpcf7 textarea::placeholder {
  color: rgba(2, 11, 48, 0.45);
}
section#contactHeroSection .wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
section#contactHeroSection .wpcf7 select {
  width: 100%;
  min-height: 56px;
  padding: 14px 50px 14px 18px;
  border: 1px solid rgba(2, 11, 48, 0.18);
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
}
section#contactHeroSection .wpcf7 .wpcf7-form-control-wrap:has(select):after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #020b30;
  font-size: 14px;
  pointer-events: none;
}
section#contactHeroSection .wpcf7 textarea {
  height: 125px;
  resize: none;
}
section#contactHeroSection .wpcf7 .wpcf7-submit {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(135deg, #5d19db 0%, #8f35ff 100%);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 8px;
}
section#contactHeroSection .wpcf7 .wpcf7-spinner {
  display: none;
}
section#contactHeroSection .contactPhoneText {
  text-align: center;
  margin-top: 24px;
}
section#contactHeroSection .contactPhoneText p {
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #020b30;
}
section#contactHeroSection .contactPhoneText p i {
  color: #8e35ff;
  margin-right: 8px;
}
section#contactHeroSection .contactPhoneText p a {
  color: #8e35ff;
  font-weight: 700;
  text-decoration: none;
}
section#contactHeroSection .contactHeroImage {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(2, 11, 48, 0.12);
}
section#contactHeroSection .contactHeroImage img {
  width: 100%;
  height: 920px;
  object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  section#contactHeroSection {
    padding: 50px 0;
  }
  section#contactHeroSection .contactHeroContent {
    max-width: 100%;
  }
  section#contactHeroSection .contactHeroImage img {
    height: 500px;
  }
  section#contactHeroSection .contactText {
    max-width: none;
  }
}
@media (max-width: 767px) {
  section#contactHeroSection h1 {
    font-size: 40px;
  }
  section#contactHeroSection .contactFormBox {
    padding: 24px;
  }
  section#contactHeroSection .contactHeroImage img {
    height: 360px;
  }
}
section#contactDetailsSection {
  padding: 90px 0;
  background-image: url("/wp-content/uploads/2026/06/footer-cta-img-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #020b30;
}
section#contactDetailsSection .contactDetailsRow {
  align-items: center;
}
section#contactDetailsSection .contactDetailsRow > div {
  position: relative;
}
section#contactDetailsSection .contactDetailsRow > div:not(:last-child):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background: rgba(142, 53, 255, 0.55);
}
section#contactDetailsSection .contactDetailItem {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0 30px;
}
section#contactDetailsSection .contactDetailIcon {
  width: 95px;
  height: 95px;
  flex: 0 0 95px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5120d9, #9a35ff);
  display: flex;
  align-items: center;
  justify-content: center;
}
section#contactDetailsSection .contactDetailIcon i {
  color: #fff;
  font-size: 50px;
}
section#contactDetailsSection h3 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}
section#contactDetailsSection .contactDetailText p,
section#contactDetailsSection .contactDetailText a {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.35;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0;
}
section#contactDetailsSection .contactDetailText a:hover {
  color: #8e35ff;
}
section#contactDetailsSection .sectionLine {
  display: block;
  width: 80px;
  height: 6px;
  background: #8e35ff;
  border-radius: 10px;
  margin-top: 15px;
}
@media (max-width: 1199px) {
  section#contactDetailsSection .contactDetailItem {
    padding: 0 20px;
    gap: 24px;
  }
  section#contactDetailsSection .contactDetailIcon {
    width: 110px;
    height: 110px;
    flex-basis: 110px;
  }
  section#contactDetailsSection .contactDetailIcon i {
    font-size: 42px;
  }
  section#contactDetailsSection .contactDetailText p,
section#contactDetailsSection .contactDetailText a {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  section#contactDetailsSection {
    padding: 40px 0;
  }
  section#contactDetailsSection .contactDetailsRow > div:after {
    display: none;
  }
  section#contactDetailsSection .contactDetailItem {
    justify-content: left;
  }
}
@media (max-width: 575px) {
  section#contactDetailsSection .contactDetailItem {
    flex-direction: column;
    text-align: center;
  }
  section#contactDetailsSection .sectionLine {
    margin-left: auto;
    margin-right: auto;
  }
}
section#faqSection {
  padding: 85px 0 95px;
  background: #fbfaff;
}
section#faqSection:before, section#faqSection:after {
  content: "";
  position: absolute;
  width: 420px;
  height: 300px;
  background-image: radial-gradient(#8e35ff 1.2px, transparent 1.2px);
  background-size: 13px 13px;
  opacity: 0.22;
  z-index: 1;
}
section#faqSection:before {
  left: -160px;
  bottom: 90px;
  transform: rotate(12deg);
}
section#faqSection:after {
  right: -160px;
  bottom: 20px;
  transform: rotate(-14deg);
}
section#faqSection .container {
  position: relative;
  z-index: 2;
}
section#faqSection .sectionIntro {
  max-width: 860px;
  margin: 0 auto 55px;
}
section#faqSection .sectionLabel {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #8e35ff;
  margin-bottom: 12px;
}
section#faqSection h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 600;
  color: #020b30;
  line-height: 1.1;
  margin-bottom: 24px;
}
section#faqSection .sectionText {
  max-width: 760px;
  margin: 0 auto;
}
section#faqSection .sectionText p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #26314c;
  margin-bottom: 0;
}
section#faqSection .faqAccordion {
  max-width: 1180px;
  margin: 0 auto;
}
section#faqSection .accordion-item {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(2, 11, 48, 0.06);
}
section#faqSection .accordion-button {
  min-height: 90px;
  padding: 22px 48px 22px 34px;
  gap: 28px;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #020b30;
  background: #fff;
  box-shadow: none;
}
section#faqSection .accordion-button:after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-image: none;
  width: auto;
  height: auto;
  color: #8e35ff;
  font-size: 17px;
  transform: none;
}
section#faqSection .accordion-button:not(.collapsed):after {
  content: "\f077";
}
section#faqSection .faqIcon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 50%;
  background: rgba(142, 53, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
section#faqSection .faqIcon i {
  color: #8e35ff;
  font-size: 23px;
}
section#faqSection .accordion-body {
  margin: 0 34px 32px;
  padding: 34px 40px;
  background: #f5f0ff;
  border-radius: 10px;
}
section#faqSection .answerText p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #020b30;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  section#faqSection {
    padding: 50px 0;
  }
}
@media (max-width: 767px) {
  section#faqSection .accordion-button {
    padding: 20px;
    font-size: 18px;
    gap: 16px;
  }
  section#faqSection .accordion-body {
    margin: 0 20px 24px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 450px) {
  section#faqSection .faqIcon {
    display: none;
  }
}
section#terms {
  padding: 70px 0;
}
section#terms h1 {
  color: #020b30;
  font-weight: 600;
  font-size: 45px;
  line-height: 50px;
}
section#terms h2 {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  border-top: 1px solid #d8d8d8;
  padding-top: 2rem;
  font-size: 28px;
  line-height: 33px;
  color: #020b30;
  font-weight: 600;
}
section#terms h3 {
  font-size: 20px;
  line-height: 25px;
  color: #020b30;
  font-weight: 600;
}
section#terms strong {
  font-weight: 800;
}
section#terms p {
  color: #30384f;
}
section#terms ul {
  margin: 0;
  padding: 0;
  padding-left: 17px;
  margin-bottom: 1.5rem;
  list-style-position: outside;
}
section#terms ul li {
  margin-bottom: 0.1rem;
  color: #30384f;
}

#thankyou h2 {
  color: #020b30;
  font-weight: 600;
  font-size: 65px;
  line-height: 70px;
}

body.error404 .error-404 {
  padding: 4rem 0;
}
body.error404 .error-404 h1 {
  font-size: calc(1.75rem + 6vw);
  line-height: calc(1.78125rem + 6.375vw);
  font-weight: 900;
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    font-size: 6.25rem;
  }
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    line-height: 6.5625rem;
  }
}

body {
  position: relative;
}
body.modal-open {
  overflow: hidden;
  padding-right: 0px;
}

@media (min-width: 1500px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1450px;
  }
}
@media (min-width: 1800px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1700px;
  }
}

ul {
  list-style-position: inside;
  padding-left: 0rem;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.img-fluid {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
}

.spill-container-left {
  margin-left: calc(-1 * (100vw - 100%) / 2);
}

.spill-container-right {
  margin-right: calc(-1 * (100vw - 100%) / 2);
}

@media screen and (min-width: 576px) {
  .spill-container-sm-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-sm-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 768px) {
  .spill-container-md-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-md-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 992px) {
  .spill-container-lg-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-lg-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .spill-container-xl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .spill-container-xxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1800px) {
  .spill-container-xxxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #8e35ff !important;
}

.owl-theme .owl-dots .owl-dot span {
  background: transparent !important;
  border: 1px solid #fff !important;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .owl-carousel .owl-dots span {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid #fff !important;
  }
}

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