:root,
[data-bs-theme=light] {
  --bs-body-bg: #ffffff;
  --bs-body-color: #494B5B;
  --bs-primary: #1972fa;
  --bs-primary-rgb: 17, 73, 158;
  --bs-primary-hover: #16181B;
  --bs-primary-hover-rgb: 22, 24, 27;
  --bs-secondary: #e5effe;
  --bs-secondary-rgb: 229, 239, 254;
  --bs-heading-color: #16181B;
  --inverse-color: #494B5B;
  --inverse-color-rgb: 73, 75, 91;
  --bs-link-color: var(--bs-primary);
  --nav-bg: #ffffff;
  --nav-color: #fff;
  --nav-hover-color: #1f6bff;
  --dropdown-bg: #ffffff;
  --dropdown-color: #1f6bff;
  --dropdown-hover-bg: #f7f7f7;
  --nav-inverse: #000000;
  --nav-inverse-alt: #ffffff;
  --bg-grey: #edf1ef;
  --img-bg-light-blue: #effaff;
  --bs-dark-blue: #242b78;
  --bs-dark-blue-shade: #00487A;
  --bs-black: #121212;
  --gradient: linear-gradient(135deg, #667eea, #764ba2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* Hide the default cursor */
  /* cursor: none;  */
}
body {
  /* font: 1rem/1.7 "Nunito", sans-serif; */
  /* font: 1rem/1.7 "Plus Jakarta Sans", sans-serif; */
  font: 1.125rem/1.7 "Nunito", sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-heading-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-wrap {
  position: relative;
}

::-moz-selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

::selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

a {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  color: var(--bs-primary);
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* color: var(--bs-dark-blue) !important; */
  font-weight: bold;
}

.section {
  padding: 70px 0;
  scroll-margin-top: 60px;
}
@media (max-width: 767.98px) {
  .section {
    padding: 40px 0;
  }
}
.section.first-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .section-title-600 {
   max-width: 600px;
   margin: 0 auto;
  }
  .section.first-section {
    padding-top: 130px;
  }
}

.text-heading-color {
  color: var(--bs-heading-color);
}
.text-body-color {
  color: var(--bs-body-color);
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}
.bg-grey {
  background-color: var(--bg-grey) !important;
}
.img-bg-light-blue {
  /* background-color: var(--img-bg-light-blue) !important; */
  background-color: transparent !important;
}
.list-checked {
  padding: 0;
  margin: 0;
  color: var(--bs-body-color);
}
.list-checked li {
  position: relative;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
.list-checked li i {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: inline-block;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  color: var(--bs-primary);
  font-size: 20px;
}
.list-checked li:before {
  position: absolute;
  display: inline-block;
  left: 0;
  content: "";
  vertical-align: -0.125em;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.5625rem 1.5625rem;
  width: 1.5625rem;
  height: 1.5625rem;
}
.fs-14, .fs-14 > p, .fs-14 > *{font-size: 14px !important;}
.fs-18, .fs-18 > p, .fs-18 > *{font-size: 18px !important;}
.fs-20, .fs-20 > p, .fs-20 > *{font-size: 20px !important;}
.fs-22, .fs-22 > p, .fs-22 > *{font-size: 22px !important;}
.fs-24, .fs-24 > p, .fs-24 > *{font-size: 24px !important;}
.fs-26, .fs-26 > p, .fs-26 > *{font-size: 26px !important;}
@media (max-width: 768px) {
  .fs-18, .fs-18 > p, .fs-18 > *,
  .fs-20, .fs-20 > p, .fs-20 > *,
  .fs-22, .fs-22 > p, .fs-22 > *,
  .fs-24, .fs-24 > p, .fs-24 > *
  .fs-26, .fs-26 > p, .fs-26 > *{
    font-size: 16px !important;
  }
}
.lh-15 {line-height: 1.5;}
.btn {
  padding: 12px 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border: 1px solid transparent;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
}
/* .btn:hover, .btn:active, .btn:focus {
  color: var(--bs-white);
  background-color: var(--bs-primary-hover) !important;
  border: 1px solid var(--bs-primary-hover) !important;
} */
.btn.btn-white.hover-outline {
  background-color: var(--bs-white) !important;
  color: var(--bs-black) !important;
  border: 1px solid transparent !important;
}
.btn.btn-white.hover-outline:hover {
  color: var(--bs-white) !important;
  background-color: transparent !important;
  border: 1px solid var(--bs-white) !important;
}
.btn.btn-white-outline {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2) !important;
  color: var(--inverse-color) !important;
  background-color: transparent;
}
.btn.btn-white-outline:hover, .btn.btn-white-outline:focus, .btn.btn-white-outline:active {
  background-color: transparent !important;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.5) !important;
}
.btn-black {
  background-color: var(--bs-heading-color);
  color: var(--bs-body-bg);
}
.btn-dark-blue {
  background-color: var(--bs-dark-blue);
  color: var(--bs-body-bg);
}
body .btn-arrow-anim .icons {
  width: 25px;
  height: 25px;
}
.btn-solid, .btn-solid:hover {
  border: none !important;
  background: var(--bs-primary);
  color: var(--bs-white) !important;
}
.header-btn-show-mobile {display: none !important;}
body .btn-solid-white {
  border: 1px solid var(--bs-body-bg) !important;
  background-color: var(--bs-body-bg) !important;
  color: var(--bs-heading-color) !important;
}
body .btn-solid-white:hover {
  background-color: transparent !important;
  border: 1px solid var(--bs-body-bg) !important;
  color: var(--bs-body-bg) !important;
}
@media (max-width: 768px) {
  body .header-btn-show-mobile > a.btn {
    background-color: var(--bs-primary) !important;
    color: var(--bs-body-bg) !important;
    width: 210px;
    margin-bottom: 15px;
    padding: 10px 15px;
  }
}
.header-btn-set .btn {
  padding: 12px 12px 12px 18px;
}
.header-btn-set .btn span {
  font-size: 0.875em;
  line-height: 1.6;
}
body.content-only-page header {
  background-color: var(--bs-body-bg) !important;
}
.block-squares {
  position: absolute;
  bottom: -12px;
  right: 0;
  z-index: 1;
  width: auto;
}

.theme-border {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
  border-width: 1px;
  font-size: 16px;
  background-color: transparent;
  border-color: rgba(var(--inverse-color-rgb), 0.1);
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--bs-primary);
}

.a-link i {
  font-size: 26px;
  margin-left: 10px;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.a-link:hover i {
  margin-left: 15px;
}

.page-title {
  padding-top: 100px !important;
  padding-bottom: 50px !important;
  background-color: rgba(var(--inverse-color-rgb), 0.03);
}
.special-link {
  color: var(--bs-dark-blue);
  border: none;
  /* background-color: transparent; */
  padding: 12px 14px;
  border: 1px solid transparent;
}
.special-link .icons {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.special-link .icons i {
  font-size: 25px;
  position: relative;
  display: inline-block;
  position: absolute;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.special-link .icons i.icon-1 {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link .icons i.icon-2 {
  opacity: 0;
  visibility: hidden;
  top: 80%;
  left: 20%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover > span:first-child {
  text-decoration: underline;
}
.special-link:hover .icons .icon-1 {
  opacity: 0;
  visibility: hidden;
  top: 20%;
  left: 80%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-2 {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.fbs__net-navbar {
  /* position: absolute; */
  top: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  z-index: 99999;
  width: 100%;
  background-color: var(--bs-body-bg) !important;
  border: none;
  box-shadow: 0px 5px 5px -2px rgba(0, 30.000000000000004, 82.00000000000003, 0.2);
}
@media (min-width: 992px) {
  .fbs__net-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.fbs__net-navbar > .container {
  position: relative;
}
.fbs__net-navbar.relative {
  position: absolute;
}
.fbs__net-navbar .navbar-brand {
  color: var(--bs-white);
  font-size: 30px;
  font-weight: bold;
  padding: 0;
}
.fbs__net-navbar .navbar-brand .logo.dark {
  display: none;
}
.fbs__net-navbar .navbar-brand .logo.light {
  display: block;
}
.fbs__net-navbar .navbar-nav > li > .nav-link {
  position: relative;
  padding: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--bs-heading-color);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    color: var(--inverse-color);
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link:before {
  content: none !important;
  /* content: ""; */
  position: absolute;
  width: calc(100% - 20px);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 5px;
  height: 1.5px;
  top: 100%;
  bottom: 0;
  left: 10px;
  background: currentcolor;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover, .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
  color: var(--bs-white);
}
/* .fbs__net-navbar .navbar-nav > li > .nav-link:hover > i, .fbs__net-navbar .navbar-nav > li > .nav-link:focus > i {
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  transform: rotate(180deg);
} */
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link:hover, .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
    color: var(--inverse-color) !important;
  }
}
@media (max-width: 767.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active {
  color: var(--bs-primary) !important;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link.active {
    color: var(--inverse-color);
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active:before {
  content: "";
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle::after {
  display: none;
  content: "";
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.fbs__net-navbar .navbar-nav .dropdown-menu {
  background-color: var(--nav-bg);
  padding: 0 !important;
}
.fbs__net-navbar .navbar-nav .dropdown-menu .nav-link:hover {
  background-color: var(--bs-primary) !important;
  color: var(--bs-body-bg) !important;
  letter-spacing: 1.01px;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle:hover {
  letter-spacing: normal !important;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle .bi-chevron-down {
  margin-left: 0.4rem;
}
.fbs__net-navbar .fbs__net-navbar-toggler {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  background-color: var(--bs-primary);
  color: var(--bs-body-bg);
  border: none;
  display: none;
}
.fbs__net-navbar .fbs__net-navbar-toggler i,
.fbs__net-navbar .btn-close {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .fbs__net-navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-btn-set .btn {
    display: none !important;
  }
}
.fbs__net-navbar .navbar-brand {
  margin-right: 0 !important;
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
  border: none !important;
  padding-left: 10px;
  padding-right: 10px;
  box-shadow: 0px 5px 5px -2px rgba(0, 30.000000000000004, 82.00000000000003, 0.2);
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
    padding-left: 5px !important;
    padding-right: 5px !important;
    width: 270px;
    border: none;
  }
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .nav-link {
  font-size: 17px;
  padding: 8px 15px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropdown:hover > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
    display: block;
    -webkit-animation: fadeInUp 0.3s ease;
            animation: fadeInUp 0.3s ease;
  }
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-animation: fadeInRight 0.3s ease;
            animation: fadeInRight 0.3s ease;
  }
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-animation: fadeInLeft 0.3s ease;
            animation: fadeInLeft 0.3s ease;
  }
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::before {
  display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a,
.fbs__net-navbar .navbar-nav li.dropstart > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a .bi,
.fbs__net-navbar .navbar-nav li.dropstart > a .bi {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav li.dropend > a .bi,
  .fbs__net-navbar .navbar-nav li.dropstart > a .bi {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: -10px;
  }
}
.fbs__net-navbar .navbar-nav li.dropend > a::after,
.fbs__net-navbar .navbar-nav li.dropstart > a::after {
  display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a:hover {
  background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropend > a .caret {
  position: absolute;
  right: 10px;
}
.fbs__net-navbar .navbar-nav li.dropstart > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropstart > a:hover {
  background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropstart > a .caret {
  position: absolute;
  left: 10px;
}
.fbs__net-navbar .navbar-toggler:hover, .fbs__net-navbar .navbar-toggler:focus, .fbs__net-navbar .navbar-toggler:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.fbs__net-navbar .header-social a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var(--bs-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  background-color: transparent;
}
.fbs__net-navbar .header-social a:hover {
  background-color: rgba(var(--bs-white-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar .header-social a {
    color: var(--bs-white);
  }
}
.fbs__net-navbar .header-social .btn {
  width: auto !important;
  height: auto !important;
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
@media (max-width: 575.98px) {
  .fbs__net-navbar .header-social .btn {
    display: none;
  }
}
.fbs__net-navbar.active {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--nav-bg) !important;
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.15);
  /* -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important; */
}
.fbs__net-navbar.active .navbar-brand {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .navbar-brand .logo.dark {
  display: block;
}

.fbs__net-navbar.active .navbar-brand .logo.light {
  display: none;
}

.fbs__net-navbar.active .nav-link {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .nav-link:hover {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .header-social a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var(--inverse-color);
}
.fbs__net-navbar.active .header-social a:hover {
  background-color: rgba(var(--inverse-color-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar.active .header-social a {
    color: rgba(var(--inverse-color-rgb), 1) !important;
  }
}
.fbs__net-navbar.active .header-social .btn {
  width: auto !important;
  height: auto !important;
  background: var(--bs-primary);
  color: var(--bs-white) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .dropdown-toggle:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .nav-link.dropdown-toggle::after {
  display: none;
  content: "";
}
.fbs__net-navbar.active .navbar-nav li.dropdown a:hover,
.fbs__net-navbar.active .navbar-nav li.dropend a:hover,
.fbs__net-navbar.active .navbar-nav li.dropstart a:hover {
  background-color: var(--bs-primary) !important;
  color: var(--bs-body-bg) !important;
  letter-spacing: 1.01px;
}
.fbs__net-navbar .fbs__net-icon-menu {
  display: block;
}
.fbs__net-navbar .fbs__net-icon-close {
  display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-menu {
  display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-close {
  display: block;
}
/* .fbs__net-navbar.dark {
  box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.15);
} */
.fbs__net-navbar.dark .navbar-brand .logo.dark {
  display: block;
}
.fbs__net-navbar .header-logo {
  width: 90px;
}
body.compliease-page .fbs__net-navbar .header-logo {
  width: 180px;
}

.fbs__net-navbar.dark .navbar-brand .logo.light {
  display: none;
}

.fbs__net-navbar.dark a {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar.dark a:hover {
  color: var(--inverse-color);
}
.fbs__net-navbar.dark .header-social a:hover {
  background-color: rgba(var(--inverse-color-rgb), 0.05);
}

.fbs__net-navbar.dark ul li a {
  color: var(--bs-primary-hover) !important;
  font-size: 0.80rem;
  font-weight: 600;
}
.fbs__net-navbar.dark ul li a:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.dark {
  display: block;
}

.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.light {
  display: none;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
#typewriter {
  border-right: 5px solid var(--bs-heading-color);
  padding-right: 5px;
  display: inline-block;
}
/* body .hero-section-pb {
  padding-bottom: 70px !important;
} */

.heading-only {
  background-color: var(--bs-primary);
}
.heading-only h1 {
  color: var(--bs-body-bg) !important;
}
.hero__v6 {
  padding: 4rem 0 70px !important;
}
.hero__v6 .hero-subtitle {
  display: none !important;
  background: color-mix(in srgb, var(--bs-secondary), transparent 70%);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.hero__v6 .hero-title {
  font-size: 48px;
}
@media (max-width: 1199.98px) {
  .hero__v6 .hero-title {
    font-size: 40px;
  }
}
@media (max-width: 991.98px) {
  .hero__v6 .hero-title {
    font-size: 30px;
  }
}
.hero__v6 .logos .logos-title {
  font-size: 12px;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--bs-primary), transparent 10%);
}

.hero__v6 .logos img {
  width: 140px;
}
.hero__v6 .hero-img {
  position: relative;
}
.hero__v6 .hero-img .img-main {
  position: relative;
  z-index: 9;
}
.hero__v6 .hero-img .img-card {
  z-index: 10;
  border-radius: 20px;
  -webkit-box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
          box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
  position: absolute;
  max-width: 280px;
  bottom: -40px;
  left: -60px;
}
@media (max-width: 991.98px) {
  .hero__v6 .hero-img .img-card {
    left: 10px;
    max-width: 380px;
  }
}
@media (max-width: 575.98px) {
  .hero__v6 .hero-img .img-card {
    left: 10px;
    max-width: 280px;
  }
}

.features__v2 .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  /* background-color: var(--bs-secondary); */
  color: var(--bs-primary);
  border: 1px solid;
}

.features__v2 .content {
  /* background-color: rgba(var(--bs-secondary-rgb), 0.2); */
  background-color: var(--bs-secondary);
}

.features__v2 .btn-play i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--bs-white);
  color: var(--bs-primary);
}

body .team__v1 img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 0;
  /* padding: 0 20px; */
  border-radius: 10px;
}
body .team__v1 .detail-box {
  /* border: 1px solid rgba(var(--inverse-color-rgb), 0.2); */
  /* border: 1px solid var(--bs-primary);
  margin-top: -25px;
  padding: 50px 20px 20px; */
  background-color: var(--bs-body-bg);
  padding: 10px 10px 0;
  z-index: 1;
  display: block;
  position: relative;
  margin: -50px 10px 0;
}
body .team__v1 .detail-box .bi-linkedin {font-size: 25px;}
body .team__v1 .title {
  font-size: 20px;
  font-weight: bold;
}
body .team__v1 .position {
  border-bottom: 2px solid rgba(var(--inverse-color-rgb), 0.2);
  padding-bottom: 15px;
}

.about__v4 .subtitle {
  display: none !important;
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.about__v4 .features li .icon {
  display: inline-flex;
  min-width: 20px;
  min-height: 20px;
  background-color: var(--bs-dark-blue) !important;
  color: var(--bs-white);
  align-items: center;
  justify-content: center;
}
.about__v4 .features li .icon i{
  line-height: 1;
  font-size: 16px;
}
.about__v4 .mission-statement {
  background-color: var(--bs-primary);
  position: relative;
  bottom: -20px;
  width: 100%;
}
.about__v4 .mission-statement h3 {
  font-size: 10px;
  color: var(--bs-secondary);
}
.about__v4 .mission-statement p {
  color: var(--bs-white);
}
.about__v4 .mission-icon {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  line-height: 50px;
  display: inline-block;
  background-color: var(--bs-body-bg);
}
.about__v4 .mission-icon i {
  color: var(--bs-body-color);
}

.pricing__v2 .subtitle {
  display: none !important;
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

/* .pricing__v2 .price-table h3 {
  color: var(--bs-primary) !important;
} */
.pricing__v2 .price-table {
  position: relative;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);

  border: 1px solid var(--bs-primary);

  transition: background-color 0.3s ease;
}
/* Hover effect */
.pricing__v2 .price-table:hover {
  background-color: var(--bs-primary); /* light blue */
}
/* Active state */
.pricing__v2 .price-table.active {
  background-color: var(--bs-primary); /* solid blue background */
}
.pricing__v2 .price-table:hover > *,
.pricing__v2 .price-table.active > *,
.pricing__v2 .price-table:hover > div *,
.pricing__v2 .price-table.active > div * {
  color: var(--bs-body-bg) !important;
}
.pricing__v2 .price-table:hover .btn,
.pricing__v2 .price-table.active .btn,
body .pricing__v2 .price-table:hover .icon,
body .pricing__v2 .price-table:active .icon,
body .pricing__v2 .price-table.active .icon {
  border: 1px solid var(--bs-body-bg) !important;
}
.pricing__v2 .price-table .border-bottom {
  border-bottom: 1px solid var(--bs-primary) !important;
}
.pricing__v2 .price-table:hover .border-bottom,
.pricing__v2 .price-table:active .border-bottom,
.pricing__v2 .price-table.active .border-bottom {
  border-bottom: 1px solid var(--bs-body-bg) !important;
}
/* .pricing__v2 .price-table .price {
  color: var(--bs-heading-color);
} */
.pricing__v2 .price-table .price strong {
  font-size: 30px;
}
.pricing__v2 .price-table .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 1px solid rgba(var(--bs-white-rgb), 0.2);
}
body .pricing__v2 .price-table-white .icon {
  border: 1px solid var(--bs-primary);
}
.pricing__v2 .popular {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.pricing__v2 .popular .price {
  color: var(--bs-white);
}
.pricing__v2 .popular h3 {
  color: var(--bs-white);
}
.pricing__v2 .popular p {
  color: var(--bs-white);
}
.pricing__v2 .popular .pricing-features h4 {
  font-size: 12px;
  color: var(--bs-white);
}
.pricing__v2 .price-table .price strong.fs-22 {
  font-size: 22px;
}
.pricing__v2 .price-table .list-unstyled span:nth-child(2) {
  font-size: 14px;
}
/* .pricing__v2 .price-table .btn {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  width: 85%;
  margin: auto;
} */

.howitworks__v1 .subtitle {
  display: none !important;
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.howitworks__v1 .step-card {
  position: relative;
}
.howitworks__v1 .step-card .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  color: var(--bs-secondary);
  background-color: var(--bs-primary);
  font-size: 18px;
}
.howitworks__v1 .arch-line {
  position: absolute;
  top: 15px;
  width: 150px;
  right: 0;
  left: calc(100% + 24px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  .howitworks__v1 .arch-line {
    display: none;
  }
}
.howitworks__v1 .arch-line.reverse {
  top: 20px;
}

.services__v3 .subtitle {
  display: none !important;
  /* background-color: var(--bs-body-color); */
  color: var(--bs-heading-color);
  display: inline-block;
  padding: 0;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
}
.services__v3 .img-box {
  width: 800px;
  height: 20px;
}
.services__v3 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}
.services__v3 .icon {
  display: inline-block;
  position: relative;
  color: var(--bs-primary) !important;
}
.services__v3 .icon > i {
  font-size: 35px !important;
}

.services__v3 .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 40px;
  right: -10px;
  bottom: 0px;
  border-radius: 50%;
  background-color: rgba(var(--bs-secondary-rgb), 1);
}

.services__v3 .icon svg {
  width: 50px;
}
.services__v3 .service-card {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
  background-image: radial-gradient(at bottom left, #0e1d550d 0, #00757729 100%);
  transition: 0.3s all ease-in-out;
}
.services__v3 .service-card:hover {
  transform: translateY(-10px);
  transition: 0.3s all ease-in-out;
}
.services__v3 .service-card .title {
  font-weight: bold;
  line-height: 1.6;
}
.services__v4 .icon::before {
  content: none !important;
}
.services__v5 .details {
  padding-right: 50px;
}
.services__v5 .details ul li .title {
  font-weight: bold;
}

.faq__v2 {
  background-color: rgba(var(--inverse-color-rgb), 0.02);
}

.faq__v2 .subtitle {
  display: none !important;
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.faq__v2 .custom-accordion {
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-btn-icon: url("");
  --bs-accordion-btn-active-icon: url("");
}

.faq__v2 .custom-accordion .accordion-button {
  position: relative;
  padding-right: 50px;
}
.faq__v2 .custom-accordion .accordion-button::after {
  content: "\f4fe";
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  right: 20px;
  top: 15px;
  width: 18px;
  height: 14px;
  font-size: 30px;
  color: var(--inverse-color);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  line-height: 1;
  position: absolute;
  -webkit-font-smoothing: antialiased;
}

.faq__v2 .custom-accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  content: "\f2ea";
}
.faq__v2 .custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-heading-color);
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--inverse-color);
  -webkit-box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
          box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
}
.faq__v2 .custom-accordion .accordion-item .accordion-body {
  border-top: none;
}

.stats__v3 .content {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  overflow: hidden;
  position: relative;
}
.stats__v3 .content h3 {
  color: var(--bs-secondary);
}
.stats__v3 .content .rounded-borders {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
}
.stats__v3 .content .rounded-borders .rounded-border-1,
.stats__v3 .content .rounded-borders .rounded-border-2,
.stats__v3 .content .rounded-borders .rounded-border-3 {
  border: 1px solid var(--bs-secondary);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: absolute;
}
.stats__v3 .content .rounded-borders .rounded-border-1 {
  right: 20px;
  top: 20px;
}
.stats__v3 .content .rounded-borders .rounded-border-2 {
  right: 40px;
  top: 40px;
}

.testimonials__v2 .subtitle {
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.testimonials__v2 .testimonial {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.testimonials__v2 .testimonial-author .author-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
}

.contact__v2 .subtitle {
  background-color: var(--bs-body-color);
  color: var(--bs-body-bg);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.contact__v2 .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
  border-radius: 50%;
}

/* .footer {
  background-color: rgba(var(--inverse-color-rgb), 0.02);
  font-size: 15px;
  padding: 80px 0;
} */
.footer-logo {width: 120px;}
.c-footer-logo {width: 200px;}
.footer > * {font-size: 16px;}
.footer-row {
  border-radius: 50px;
  background: linear-gradient(to left, #743ad5, #453ad5); /* gradient fill */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image:
    linear-gradient(#121212, #121212), /* inner fill */
    linear-gradient(to left, #743ad5, #453ad5); /* outer border */
    border-bottom: none;
}
.footer h2, .footer h3, .footer h4 {
  font-size: 16px;
  color: var(--bs-body-bg);
}
.footer ul li {
  padding: 0;
  /* margin: 0 0 10px 0; */
  font-size: 16px;
}
.footer a {
  /* color: var(--bs-heading-color); */
  color: var(--bs-body-bg);
  text-decoration: none;
}
.footer a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
.footer .social-links {
  font-size: 24px;
}
/* .footer .social-links a + a {
  margin-left: 25px;
} */
.footer a .badge {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
}
.footer a:hover .badge {
  background-color: rgba(var(--bs-primary-rgb), 1);
  color: var(--bs-white);
}
.footer .quick-contact i {
  color: var(--inverse-color);
}
.footer .credits {
  font-size: 13.5px;
}

#back-to-top {
  position: fixed;
  bottom: 0px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  background: var(--bs-primary);
  color: white;
  border: none;
  /* border-radius: 50%; */
  padding: 10px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  width: 45px;
  height: 45px;
}
#back-to-top i {
  font-size: 35px;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#back-to-top.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
.StaticContentWrapper {
  padding: 0 150px;
}
@media (max-width: 767.98px) {
  .StaticContentWrapper {
    padding: 0 20px;
  }
}
.animated-boxes {
  overflow: hidden;
  padding: 30px 0;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  color: #000;
}

/* Scroll rows wrapper */
.animated-boxes .scroll-row {
  overflow-x: auto;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: auto;
  scrollbar-width: none;
  position: relative;
}
.animated-boxes .scroll-row::-webkit-scrollbar {
  display: none;
}
.animated-boxes .scroll-row.dragging {
  cursor: grabbing;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
.animated-boxes .scroll-track {
  display: flex;
  width: max-content;
  animation: scroll-leftt 50s linear infinite;
}
.scroll-track {
  display: flex;
  animation: scroll-left 40s linear infinite;
}
.animated-boxes .scroll-track > .col-md-3 {
  flex: 0 0 auto;
  width: 300px;
  max-width: 300px;
}

/* The container holding all the boxes */
.animated-boxes .scroll-track {
  display: flex;
  width: max-content;
}

/* Using flex-shrink 0 and fixed width for consistent sizing */
.animated-boxes .scroll-track > .col-md-3 {
  flex: 0 0 auto;
  width: 300px;
  max-width: 300px;
}

/* Optional: If you want some padding inside each card */
.animated-boxes .service-card {
  background: #fff;
  border-radius: 1rem;
  padding: 15px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 226px;
  max-width: 100%;
  min-height: 100%;
  border: 2px solid var(--bs-dark-blue);
}
.scroll-track > .service-card {
  flex: 0 0 auto; /* prevent shrinking */
  margin-right: 20px; /* spacing */
}
.animated-boxes .title {
  font-size: 14px;
}
.animated-boxes .para {
  font-size: 12px;
  display: -webkit-box;
  line-clamp: 2;  /* Limit to 2 lines */
  -webkit-line-clamp: 2;  /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.animated-boxes .special-link {text-decoration: none;}
.animated-boxes .special-link:hover {text-decoration: underline;}
.animated-boxes .special-link .icons {
  display: none !important;
}
/* Animation for left to right scrolling */
.animated-boxes .scroll-row.left-to-right .scroll-track {
  animation: scroll-leftt 100s linear infinite;
  cursor: grab;
}

/* Animation for right to left scrolling */
.animated-boxes .scroll-row.right-to-left .scroll-track {
  animation: scroll-right 50s linear infinite;
}

/* Pause animation on hover */
.animated-boxes .scroll-row:hover .scroll-track {
  animation-play-state: paused;
}
/* Scroll left animation keyframes */
@keyframes scroll-leftt {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* Scroll right animation keyframes */
@keyframes scroll-right1 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%);
  }
}
.animated-boxes .service-grid {
  /* flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto; */
  display: grid;
  grid-template-columns: repeat(3, 250px); /* 3 equal columns */

  row-gap: 24px;
}
@media(max-width:767px){
  .animated-boxes .service-grid{
      grid-auto-flow: column;
      overflow-y: auto;
  }
}
.animated-boxes .service-item {
  /* flex: 0 0 calc(33.333% - 10px); */
  width: 100%;
  min-height: 250px;
  height: 100%;
  flex-shrink: initial;
}

.sitemap-list .title {
  position: relative;
  font-size: 20px;
  line-height: 1;
  color: var(--bs-primary);
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 15px;
}
.sitemap-list .title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 100%;
  background-color: var(--bs-primary);
}
.sitemap-list ul.content-none:after {
  content: none;
}
.sitemap-list ul li {
  list-style-type: none;
}
.sitemap-list ul li+li {margin-top: 10px;}
.sitemap-list ul li a {
  color: var(--bs-body-color);
  text-decoration: none;
}
.sitemap-list ul li a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
.service-card .tooltip-container {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 100%;
  line-height: 1;
}
.service-card .tooltip-container .info-icon {
  font-size: 18px;
  color: var(--bs-primary);
}
.service-card .tooltip-container .tooltip-popup {
  position: absolute;
  top: 100%;
  left: -107px;
  transform: translateX(-50%);
  background-color: #000000;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 1000;
  width: 260px;
  height: auto;
  display: none; /* hidden by default */
}
.service-card .tooltip-container .tooltip-popup p {
  font-size: 12px;
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 0;
}
.service-card .special-link {
  width: 150px;
}
.service-card .static-modal .foot-note {
  font-size: 12px;
  font-style: italic;
  margin-bottom: 0;
}
.service-card .static-modal .btn-close {
  transition: transform 0.4s ease;
}
.service-card .static-modal .btn-close:hover {
  transform: rotate(180deg);
}

.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.subscribe-section {
  padding-bottom: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: -1%;
}
.section-cliped{position: relative;}
.section-cliped:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: var(--bs-black);
  clip-path: polygon(0 60%, 100% 30%, 100% 100%, 0 100%);
  z-index: -1;
}

/* Subscribe Box */
.subscribe-box {
  background: linear-gradient(90deg, hsl(235.9deg 100% 15.35%) 0%, hsl(218deg 94.39% 57.91%) 100%);
  background: -moz-linear-gradient(90deg, hsl(235.9deg 100% 15.35%) 0%, hsl(218deg 94.39% 57.91%) 100%);
  background: -webkit-linear-gradient(90deg, hsl(235.9deg 100% 15.35%) 0%, hsl(218deg 94.39% 57.91%) 100%);
  /* background: url('../images/global/bg-element.png') no-repeat;
  background-size: cover; */
  color: #333;
  padding: 25px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 850px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
.subscribe-box > * {color: var(--bs-body-bg) !important;}

/* Decorative Background Elements */
.subscribe-box::before,
.subscribe-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: var(--bs-primary);
  opacity: 0.4;
  z-index: 0;
}

.subscribe-box::before {
  width: 150px;
  height: 150px;
  top: -50px;
  left: -50px;
}

.subscribe-box::after {
  width: 150px;
  height: 150px;
  bottom: -50px;
  right: -50px;
}

/* Text & Form */
.subscribe-box h2,
.subscribe-box p,
.subscribe-form {
  position: relative;
  z-index: 1;
}

.subscribe-box h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

/* .subscribe-box p {
  margin-bottom: 25px;
  font-size: 1.1em;
} */

/* Form Styles */
.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 70%;
  max-width: 300px;
}

.subscribe-form button {
  padding: 12px 20px;
  font-size: 16px;
  background-color: #667eea;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.subscribe-form button:hover {
  background-color: #556cd6;
}
.large-img {
  width: 800px;
  height: 800px;
  margin: auto;
}
.large-img img {
  width: 100%;
  height: 100%;
}
.sticky-wrapper {
  position: sticky;
  top: 100px;
}

/* Custom overlay background and z-index */
.custom-image-modal.show {
  background-color: rgba(0, 0, 0, 0.85); /* dark overlay */
  z-index: 999999 !important;
}

.custom-image-modal .modal-dialog {
  z-index: 10000; /* Ensure image itself is above overlay */
}

/* Optional: remove Bootstrap modal background animation blur */
.modal-backdrop {
  display: none;
}
.magnifier {
  display: none !important;
  cursor: pointer;
  background-color: var(--bs-primary) !important;
  margin: 0;
  padding: 5px 10px !important;
  border-radius: 5px;
}
body img.blue-border {
  padding: 0 !important;
  border: none !important;
}
.bi-zoom-in:before {
  color: var(--bs-body-bg);
}
.custom-image-modal .modalimg {
  width: 800px;
  height: 600px;
  object-fit: contain;
  object-position: center;
}
.custom-image-modal .btn-close {
  background-color: var(--bs-body-bg);
  z-index: 99;
}
.img-wh-500 {
  width: 500px;
  height: 500px;
}
.img-wh-600 {
  width: 600px;
  height: 600px;
}
.img-wh-800 {
  width: 800px;
  height: 800px;
}
@media (max-width: 768px) {
  .img-wh-500, .img-wh-600, .img-wh-800 {
    width: 100%;
    height: 100%;
  }
}
.img-wh-500 img, .img-wh-600 img, .img-wh-800 img, .img-wh-500 > *, .img-wh-600 > *, .img-wh-800 > * {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.static-cards .service-card .icon {
  display: none !important;
}
.static-cards .service-card p:not(.title) {
  font-size: 14px;
}
.blue-border {
  border: 1px solid var(--bs-primary) !important;
}

.tabs-section .nav-tabs {
  margin-bottom: 40px;
  border-bottom: none;
}
.tabs-section .tab-content>.tab-pane {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--bs-dark-blue);
  overflow: hidden;
}
.tabs-section .nav-item {
  border: none !important;
  margin: 0 12px;
}
.tabs-section .nav-item > .nav-link {
  background-color: var(--bs-dark-blue) !important;
  color: var(--bs-body-bg);
  font-weight: bold;
  border-radius: 50px;
  padding: 15px 30px;
}
.tabs-section .nav-item > .nav-link.active {
  color: var(--bs-body-bg);
  text-decoration: underline;
}
.tabs-section :is(.tab-content, .accordion-body) {
  position: relative;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); */
}
.tab-content>.active:before {
  position: absolute;
  content: '';
  top: -5px;
  left: 9%;
  height: 5px;
  width: 8%;
  background-color: var(--bs-dark-blue);
}
.tab-content>.active.tab2:before {left: 32%;}
.tab-content>.active.tab3:before {left: 58%;}
.tab-content>.active.tab4:before {left: 82%;}

.img-slider-swiper .swiper {
  padding: 60px 0;
}

.img-slider-swiper .swiper-wrapper {
  align-items: center;
}

.img-slider-swiper .swiper-slide {
  width: 300px !important;
  height: 100%;
  background: white;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* font-size: 20px;
  font-weight: bold;
  color: #333; */
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
.img-slider-swiper .swiper-slide > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-slider-swiper .swiper-slide.swiper-slide-active {
  transform: scale(1.65);
  background: var(--bs-primary);
  color: white;
  z-index: 5;
  box-shadow: 0 12px 35px rgba(118, 75, 162, 0.4);
}

.img-slider-swiper .swiper-button-next,
.img-slider-swiper .swiper-button-prev {
  color: #ffffff;
  background: var(--bs-primary) !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.img-slider-swiper .swiper-button-next:after,
.img-slider-swiper .swiper-button-prev:after {
  font-size: 20px;
}

.img-slider-swiper .swiper-button-next:hover,
.img-slider-swiper .swiper-button-prev:hover {
  background: #764ba2;
  color: white;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .img-slider-swiper .swiper-slide {
    width: 180px !important;
    height: 220px;
    font-size: 16px;
  }

  .img-slider-swiper .swiper-slide.swiper-slide-active {
    transform: scale(1.4);
    height: 260px;
  }
}
.imgslide {
  max-width: 1200px;
  margin: auto;
}

.imgslide .swiper {
  padding-bottom: 50px;
}

.imgslide .swiper-slide {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.imgslide .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.imgslide .swiper-pagination {
  text-align: center;
  bottom: 0 !important;
}

.imgslide .swiper-pagination-bullet {
  background: #aaa;
  opacity: 1;
}

.imgslide .swiper-pagination-bullet-active {
  background: #333;
}

@media (max-width: 768px) {
  .imgslide .swiper-slide {
    border-radius: 8px;
  }
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  /* background: #f1f1f1;
  padding: 10px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
}
.marquee-text {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-text-scroll-left 50s linear infinite;
  font-size: 1.2rem;
  color: #333;
  padding-left: 100%;
}
/* Pause animation on hover */
.marquee-wrapper:hover .marquee-text {
  animation-play-state: paused;
}
@keyframes marquee-text-scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*==============================
  Custom Testimonial Section
===============================*/
/* Main testimonial section */
.custom-testimonial .testimonial-title {
  /* text-align: center; */
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Swiper layout */
.custom-testimonial .swiper {
  padding-bottom: 70px;
}
.custom-testimonial .swiper-slide {
  padding: 50px 30px 50px 60px;
  position: relative;
  /* text-align: center; */
  border: 1px solid #ddd;
  border-radius: 25px;
  border-bottom-right-radius: 0;
  height: 100%;
  min-height: 230px;
}
.custom-testimonial .swiper-slide p {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  width: 100%;
  max-width: 900px;
}
.custom-testimonial .swiper-slide p::before,
.custom-testimonial .swiper-slide p::after {
  /* content: "“"; */
  /* color: var(--bs-primary); */
  content: "\275D";
  font-size: 5rem;
  display: inline-block;
  line-height: 1;
  position: absolute;
}
.custom-testimonial .swiper-slide p::before {
  left: 2%;
  top: 5%;
}
.custom-testimonial .swiper-slide p::after {
  content: none;
  transform: rotate(180deg);
  right: 9%;
  top: -30px;
}
.custom-testimonial .swiper-slide .author {
  margin-top: 15px;
  font-weight: 500;
}

/* Pagination dots */
.custom-testimonial .swiper-pagination {
  text-align: center;
  margin-top: 10px;
}

.custom-testimonial .swiper-pagination-bullet {
  background-color: var(--bs-black);
  opacity: 1;
  margin: 0 4px;
  width: 15px;
  height: 15px;
  border-radius: 25px;
  border: 1px solid #ffffff;
}

.custom-testimonial .swiper-pagination-bullet-active {
  background-color: #ffffff;
  border: 1px solid #ffffff;
}

/* Responsive spacing */
@media (max-width: 768px) {
  .custom-testimonial {
    padding: 40px 10px;
  }
  .custom-testimonial .swiper-slide {
    padding: 60px 30px 30px;
    height: 100%;
  }
  .custom-testimonial .swiper-slide p::before {
    left: 25px;
    top: 20px;
  }
  .custom-testimonial .swiper-slide p::after {
    transform: rotate(180deg);
    right: 0;
    top: -30px;
  }
  .custom-testimonial .testimonial-title {
    font-size: 1.5rem;
  }
}
.animated-boxes-modals .modal-content {
  border: 3px solid var(--bs-primary);
  /* background-color: var(--bs-primary); color: var(--bs-body-bg); */
}
.animated-boxes-modals.show {background-color: #000000a8;z-index: 99999;}
.animated-boxes-modals .btn-close-icon {transition: transform 0.3s ease-in-out;cursor: pointer;font-size: 40px;line-height: 0;}
.animated-boxes-modals .btn-close-icon:hover {transform: rotate(180deg);}

.slider {
  width: 100vw;
  overflow: hidden;
  position: relative;
}
.slide-track {
  display: flex;
  gap: 30px;
  height: 100%;
  max-height: 300px;
  width: max-content;
}
.slider img {
  height: 300px;
  width: 400px;
  flex-shrink: 0;
  object-fit: contain;
}
.scroll-left {
  animation: scroll-left 100s linear infinite;
}
.scroll-right {
  animation: scroll-right 100s linear infinite;
}
/* Infinite scrolling left-to-right */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-80%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0%);
  }
}

.col-padding {
  padding: 0 4% 0 9%;
}
.bg-black {
  background-color: var(--bs-black) !important;
}
body .bg-black > *,
body .bg-black h1, body .bg-black h2, body .bg-black h3, body .bg-black h4, body .bg-black h5, body .bg-black h6 {
  color: #DDDEDE !important;
}
.bg-blue-gradient {
  background: #FFFFFF;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 36%, rgba(203, 219, 245, 1) 100%);
}

.scroll-text-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.scroll-text {
  position: relative;
  font-size: 2em;
  white-space: nowrap;
  will-change: transform;
}

.text-white, body .text-white > *, .text-white a {color: #ffffff !important;}
.list-style-none li {list-style-type: none;}
.home-grid-boxes-container .text-big {font-size: 2.5rem;}
.home-grid-boxes-container .grid-boxes {
  padding: 25px;
  border-radius: 12px;
  border: none;
  border-left: 4px solid var(--bs-primary);
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  font-weight: bold;
}
.home-grid-boxes-container .grid-boxes:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  background: var(--bs-primary) !important;
  color: var(--bs-body-bg) !important;
}
.home-grid-boxes-container .grid-boxes:hover a {
  color: var(--bs-body-bg) !important;
}
.grid-2-boxes-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 equal columns */
  /* grid-template-rows: repeat(2, 1fr); */
  gap: 0;
}
.grid-boxes-container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  grid-template-rows: repeat(2, 1fr); /* 2 equal rows */
  gap: 0; /* no space between boxes */
}
.grid-boxes {
  border: 1px solid #fff; /* Border around each box */
  padding: 30px 30px 50px;
  height: 100%; /* Full height of the grid cell */
}
.grid-boxes > i {font-size: 35px;}
/* Responsive media query */
@media (max-width: 600px) {
  .grid-boxes-container {
    grid-template-columns: 1fr; /* 1 column for small screens */
      /* Stack all 6 boxes vertically */
    /* grid-template-rows: repeat(6, 1fr);  */
  }
}
.grid-boxes-container-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  /* height: 400px;  */
}
.grid-boxes-container .box {
  background: #4facfe;
  color: white;
  padding: 20px;
  font-size: 20px;
  border-radius: 10px;
}
.grid-boxes-container .box1 {
  grid-column: 1;
  grid-row: 1;
}
.grid-boxes-container .box2 {
  grid-column: 1;
  grid-row: 2;
}
.grid-boxes-container .box3 {
  grid-column: 2;
  grid-row: 1 / span 2; /* spans both rows */
}
.home-service-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-service-grid .service-card {
  width: 32%;
  border-radius: 20px;
  background: linear-gradient(to left, #743ad5, #453ad5);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 5px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: border-box;
  background-image: linear-gradient(#121212, #121212), /* inner fill */ linear-gradient(to left, #743ad5, #453ad5);
  border-bottom: none;
  color: #ffffff;
  padding: 30px;
  height: 100%;
  min-height: 350px;
}
.home-service-grid .service-card .title {font-size: 22px;}
.home-service-grid .service-card .para {font-size: 18px;}

.read-more-text {
  display: block;
  max-height: 80px;  /* Limit the height to show only a few lines initially */
  overflow: hidden;  /* Hide the content that exceeds the max-height */
  transition: max-height 0.3s ease-in-out;  /* Smooth transition when expanding */
  text-overflow: ellipsis;
}
.read-more-text .read-more {
  cursor: pointer;
  color: var(--bs-body-bg);
  text-decoration: underline;
  position: absolute;
  left: 30px;
  bottom: 10px;
  background-color: transparent;
}
.read-more-text .more-text {
  display: none;
  white-space: normal;
}
.read-more-text.show-more {
  max-height: none;  /* Expand to show the full content */
}
.read-more-text .read-more:hover {
  text-decoration: none;
}

.list-span-bold span {font-weight: bold; text-decoration: underline;}
.list-li-space li+li {margin-top: 10px;}
body .subtitle.subtitle-d-block {display: block !important;}


.floating-element {
  animation: float2 2s ease-in-out infinite 0.1s;
}
@keyframes float2 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}


.floating-element2 {
  animation: bounceUp 2.5s ease-in-out infinite;
}
@keyframes bounceUp {
  0%, 100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(-10px);
  }
  70% {
    transform: translateY(10px);
  }
}

/* bootstrap - accordions */
.static-accordions .accordion-item {
  background-color: transparent;
  color: #DDDEDE;
  border: 1px solid #4a4a4a;
  font-size: 18px;
}
.static-accordions .accordion-header .accordion-button {
  align-items: center;
  background-color: transparent;
  color: #DDDEDE;
  font-size: 20px;
}
.static-accordions .accordion-button::after {
  background-image: none;   /* default svg hidden */
  content: "\f282";
  font-family: 'bootstrap-icons';
  font-size: 20px;
  line-height: 1;
  color: #DDDEDE;
  margin-left: auto;
  transition: transform 0.3s ease;
}
.static-accordions .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.parallax-banner {
  height: 500px;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/global/home/what-we-do-banner.png');
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
}
/* banners */
.hero-banners .left-content {
  height: 100vh;
  padding: calc(110px + 2vw) calc(50px + 2vw) 80px calc(90px + 2vw);
}
.split-image {
  /* background-image: url('assets/images/global/banner/Automate_your_Business_Compliance_banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh; */
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  height: 100vh;
}
.hero-banners .home-banner-img {background-image: url('../images/global/home/landing-page-banner.png');}
.partnering-banner-img {
  background-image: url('../images/global/home/partnering.png');
  background-size: cover;
  background-position: center center;
  height: 80vh;
}
.about-banner-img {background-image: url('../images/global/home/about-banner.png');}
.compliease-banner-img {
  background-image: url('../images/global/compliease/Compliease-banner.jpeg');
  background-size: contain;
  background-position: right;
  height: 80vh;
}
.compliease-banner .left-content {padding-top: calc(90px + 2vw);}
.text-red {color: #ff0000;}
.text-green {color: #008000;}

.evolve-challenge-list li {
  border-radius: 10px;
  padding: 10px 30px;
  font-size: 18px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 23%);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 15px;
}
.evolve-challenge-list li p {margin-bottom: 0;font-weight: bold;}

/* Section wrapper */
.floating-section-wrap {
  position: relative;
  height: 1200px;
  overflow: hidden; /* hides overflow if any box goes out slightly */
}

/* Floating box container */
.floating-box {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Common styles for all boxes */
.floating-box .box {
  position: absolute;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(25, 114, 250, 0.2), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 36px rgba(25, 114, 250, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  max-width: 250px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}

/* Hover effect */
.floating-box .box:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--bs-primary);
}
.floating-box .center-box {
  left: 0;
  right: 0;
  margin: auto;
  top: 25%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  padding: 65px 38px;
  /* background: #3500ff78; */
  box-shadow: rgb(53 0 255 / 73%) 0px 0px 130.541px 0px;
  animation: centralPulse 3s ease-in-out infinite;
}
@keyframes centralPulse {
  0%, 100% {
    transform: scale(0.9);
    opacity: 1;
  }
  50% {
    transform: scale(1);
    opacity: 0.85;
  }
}
/* Box 1 – top right float up/down */
.floating-box .box1 {
  top: 35%;
  left: 10%;
  animation: float1 6s ease-in-out infinite;
}

/* Box 2 – middle left float down/up */
.floating-box .box2 {
  top: 2%;
  left: 25%;
  animation: float2 7s ease-in-out infinite 0.2s;
}

/* Box 3 – bottom right diagonal float */
.floating-box .box3 {
  top: 5%;
  right: 13%;
  animation: float3 8s ease-in-out infinite 0.4s;
}
.floating-box .box4 {
  top: 40%;
  left: auto;
  right: 13%;
  animation: float3 8s ease-in-out infinite 0.4s;
}
.floating-box .box .text-big {
  font-size: 35px;
  color: #c7c8d7;
  font-weight: bold;
}
.floating-box .box > p {
  font-size: 20px;
  margin-bottom: 0;
}
/* Keyframes for each box animation */
@keyframes float1 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1.5deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(12px) rotate(1.5deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-6px, -8px) rotate(-2deg);
  }
}
.team-row-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}

.cust-col-grid {
  background-color: var(--bs-body-bg);
  padding: 20px;
  box-shadow: 0 10px 25px rgb(0 0 0 / 5%);
}
.cust-col-grid:hover {
  transform: translateY(-5px) !important;
}
.team-row-wrap{padding: 0 10%;}
.team-row-wrap:after {
  /* content: ''; */
  position: absolute;
  width: calc(100% - 0px);
  max-width: 1800px;
  overflow: hidden;
  height: 100%;
  top: 20%;
  left: 0;
  z-index: -1;
  background-color: var(--bs-primary);
}

.team-card:hover {
  cursor: pointer;
}
.teams-modals .btn-close-icon {
  position: absolute;
  top: 0;
  right: 0;
}
.teams-modals .left-col img {
  width: 200px;
  height: 200px;
  display: block;
  padding: 0;
  margin-bottom: 15px;
}
.scroll-cards {
  counter-reset: card;
  position: relative;
  display: block;
}
.scroll-cards__item {
  --offset: 0.5em;
  color: var(--bs-black);
  position: sticky;
  top: max(16vh, 6em);
  padding: 25px;
  min-height: 300px;
  /* background: var(--bs-primary); */
  background: linear-gradient(135deg, #f7fafc, #edf2f7);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.7);
  width: calc(100% - 5 * var(--offset));
  /* border: 1px solid var(--bs-black); */
  border-radius: 12px;
}
/* .scroll-cards__item > .title {font-size: 18px; font-weight: bold;} */
.scroll-cards__item:nth-of-type(0) {
  transform: translate(calc((0 - 1) * var(--offset)), calc((0 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(1) {
  transform: translate(calc((1 - 1) * var(--offset)), calc((1 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(2) {
  transform: translate(calc((2 - 1) * var(--offset)), calc((2 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(3) {
  transform: translate(calc((3 - 1) * var(--offset)), calc((3 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(4) {
  transform: translate(calc((4 - 1) * var(--offset)), calc((4 - 1) * var(--offset)));
}
.scroll-cards__item:nth-of-type(5) {
  transform: translate(calc((5 - 1) * var(--offset)), calc((5 - 1) * var(--offset)));
}

@media screen and (min-width: 37em) {
  .scroll-cards__item {
    z-index: 1;
    --offset: 1em;
    /* padding-left: 5em; */
  }
  .scroll-cards__item:before {
    /* counter-increment: card;
    content: "" counter(card); */
    content: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    background: var(--bs-body-bg);
    color: var(--bs-body-bg);
    text-align: center;
    border-radius: 50%;
    position: absolute;
    left: 1.25em;
    top: 1.25em;
    font-weight: bold;
  }
}

@media screen and (min-width: 62em) {
  .scroll-cards__item {
    --offset: 3.2rem;
    width: 80%;
  }
}

.bg-dark-blue-shade {background-color: var(--bs-dark-blue-shade);}



























/* Mission-Vision Section */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 40px 20px; */
}
.about-container .section-header {
    text-align: center;
    margin-bottom: 30px;
}

.about-container .main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.about-container .subtitle {
    color: #718096;
    font-size: 1rem;
}

.about-container .tab-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    background: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50px;
    overflow: hidden;
}

.about-container .tab-button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: var(--bs-black);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}

.about-container .tab-button.active {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.about-container .content-container {
    /* background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-height: 300px; */
    overflow: hidden;
}

.about-container .tab-content {
    display: none;
    /* padding: 30px; */
    animation: fadeIn 0.4s ease-in-out;
}

.about-container .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.about-container .vision-mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}

.about-container .vm-card {
    padding: 25px;
    border-radius: 12px;
    /* border-left: 4px solid #667eea; */
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
}

.about-container .vm-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-container .vm-icon {
    font-size: 1.2rem;
}

.about-container .vm-text {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-container .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.about-container .value-card {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    border-radius: 10px;
    padding: 20px;
    /* border-left: 3px solid #667eea; */
    transition: all 0.3s ease;
    cursor: pointer;
}

/* .about-container .value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    border-left-color: #764ba2;
    background: var(--bs-primary);
    color: var(--bs-body-bg);
} */

.about-container .value-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.about-container .value-icon {
    width: 32px;
    height: 32px;
    background: var(--bs-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}
/* .about-container .value-card:hover .value-name {
  color: var(--bs-body-bg) !important;
} */
/* .about-container .value-card:hover .value-icon {
  background-color: var(--bs-body-bg) !important;
} */
.about-container .value-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748 !important;
}

.about-container .value-description {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-container .horizontal-layout {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-container .horizontal-card {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.about-container .horizontal-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-container .horizontal-icon {
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.about-container .horizontal-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.about-container .horizontal-content p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 768px) {
    .about-container .vision-mission-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-container .values-grid {
        grid-template-columns: 1fr;
    }

    .about-container .tab-navigation {
        max-width: 100%;
    }

    .about-container .tab-button {
        font-size: 0.85rem;
        padding: 10px 15px;
    }

    .about-container .main-title {
        font-size: 1.8rem;
    }

    .about-container .horizontal-card {
        flex-direction: column;
        text-align: center;
    }

    .about-container .horizontal-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

.about-container .view-toggle {
    text-align: center;
    margin-bottom: 20px;
}

/* .about-container .toggle-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-container .toggle-button:hover {
    background: #5a67d8;
    transform: scale(1.05);
} */


/* banner sections start */

  .hero-banner {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  }
  .hero-banner .bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  }
.hero-banner .home-bg-image {
  background: url('../images/global/home/landing-page-banner.png') center left/cover no-repeat;
}
.hero-banner .about-bg-image {
  background: url('../images/global/home/about-page-banner.jpeg') bottom left/cover no-repeat;
}
.hero-banner .compliease-bg-image {
  background: url('../images/global/compliease/Compliease-banner.jpeg') bottom left/cover no-repeat;
}
.hero-banner .hero-content {
  position: relative;
  z-index: 5;
  max-width: 600px;
  padding: 0 60px;
  margin-left: 5%;
  }
  .hero-banner .brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 25px;
  color: #6366f1;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  }
  .hero-banner .brand-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #6366f1;
  border-radius: 50%;
  }
  .hero-banner .hero-heading {
  font-size: clamp(2.5rem, 2vw, 4.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: #1e293b;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  }
  .hero-banner .hero-heading .highlight {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #1972fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  }
  .hero-banner .hero-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  line-height: 1.6;
  color: #2e343d;
  margin-bottom: 2.5rem;
  font-weight: 400;
  }
  .hero-banner .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6366f1, #1972fa);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  position: relative;
  overflow: hidden;
  }
  .hero-banner .cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8b5cf6,rgb(64, 103, 161));
  opacity: 0;
  transition: opacity 0.3s ease;
  }
  .hero-banner .cta-button:hover::before {
  opacity: 1;
  }
  .hero-banner .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  }
  .hero-banner .cta-button span {
  position: relative;
  z-index: 1;
  }
  .hero-banner .cta-button::after {
  content: '→';
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
  }
  .hero-banner .cta-button:hover::after {
  transform: translateX(4px);
  }
  @keyframes cta-float {
  0%, 100% {
      transform: translateY(0px) rotate(45deg);
  }
  50% {
      transform: translateY(-20px) rotate(45deg);
  }
  }
  @keyframes cta-fade {
  0%, 100% {
      opacity: 0.3;
  }
  50% {
      opacity: 0.8;
  }
  }
  @media (max-width: 1024px) {
  .hero-banner .bg-image {
      width: 40%;
      /* opacity: 0.6; */
  }
  .hero-banner .hero-content {
      max-width: 550px;
      padding: 0 40px;
  }
}

/* Hide the default cursor & show the custom circled cursor */
.custom-cursor .cursor-dot,
.custom-cursor .cursor-circle {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--bs-black);
}
.cursor-circle {
  width: 36px;
  height: 36px;
  border: 2px solid var(--bs-black);
  transition: transform 0.2s ease-out;
}
.cursor-circle.hovered {
  transform: scale(2);
  border-color: var(--bs-black);
}
/* end */
.zoom-section {
  overflow: hidden;
  transform: scale(0.9); /* Initial zoom out */
  transition: transform 0.5s ease;
}
@media (max-width: 767.98px) {

  .custom-cursor {display: none !important;}
  .fbs__net-navbar {padding: 0;}
  .p-5 {padding: 1rem !important;}
  .mb-5 {margin-bottom: 1.2rem !important;}
  .w-75 {width: 100% !important;}

  .hero-banner{height:auto;}
  .hero-banner .bg-image {
      /* background-size: cover; */
      width: 100%;
      height: 40%;
      top: 0;
      /* opacity: 0.3; */
  }
  .hero-banner .hero-content {
      background-color: var(--bs-body-bg);
      max-width: 100%;
      padding: 20px 20px 40px;
      margin-left: 0;
      text-align: left;
      margin-top: 70%;
  }
  .hero-banners .left-content {
    height: 100%;
    /* padding: 10% 5% 2%; */
  }
  .hero-banner .hero-heading{font-size: clamp(1.8rem, 2vw, 4.5rem);}
  /* banner style 2 */
  .hero-banners > .row {flex-direction: column-reverse;}
  .hero__v6,
  .hero-banners .left-content {
    padding: 10% 5% 2% !important;
  }
  .floating-section-wrap {
    height: auto;
    padding-bottom: 40px !important;
  }
  .floating-box {
    display: flex;
    flex-direction: column;
  }
  .floating-box .box {
    position: initial;
    margin: auto;
  }
  .floating-box .center-box {order: 1;}
  .floating-box .box1 {order: 2;}
  .floating-box .box2 {order: 3;}
  .floating-box .box3 {order: 4;}
  .floating-box .box4 {order: 5;}
  .floating-box .box .text-big {
    font-size: 26px;
  }
  .floating-box .box > p {
    font-size: 18px;
  }
  .team-row-wrap{
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  body .team__v1 img {height: 280px;}
  body .team__v1 .detail-box {margin: auto;}
  .teams-modals .left-col img {
    display: none;
    width: 150px;
    height: 150px;
  }
  .teams-modals .right-col {
    max-height: 300px;
    overflow-y: scroll;
    margin-top: 10px;
  }
  .grid-boxes{padding: 25px;}
  .services__v5 .details {padding-right: 10px;}
  .split-image{
    height: 300px;
    background-size: cover !important;
  }
  .sticky-wrapper{position: initial;}
  .read-more-text{max-height: none;}
  .custom-testimonial .swiper-slide {padding: 30px;}
  .custom-testimonial .swiper-slide p::before,
  .custom-testimonial .swiper-slide p::after {font-size: 3rem;}
  .custom-testimonial .swiper-slide p::before{left: 5px;}
  .teams-modals .modal-body > .d-flex,
  .read-more-text .more-text {
    display: block !important;
  }
  #back-to-top,
  .read-more-text .read-more {
    display: none !important;
  }
  .footer{padding: 40px 20px;}
  .footer-row{padding: 25px 10px !important;margin: 10px;}
}



/* New CSS Start */
@media(min-width:991px){
  .h-lg-100{
    height: 100% !important;
  }
}

@media(max-width:767px){
  .grid-boxes-container{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:576px){
  .grid-boxes-container{
    grid-template-columns: repeat(1, 1fr);
  }
}


/* New CSS Start */
:root{
  --dark-blue:#1C274C;
}
.section-dark-blue{
  background-color: var(--dark-blue);
}
.section-dark-blue *{
  color: var(--bs-body-bg);
}
@media(max-width:767px){
  .custom-testimonial .swiper-slide {
    padding: 60px 30px 30px;
  }
  .custom-testimonial .swiper-slide p::before {
    left: 25px;
    top: 20px;
  }

}

.compliance-wrapper .badges{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;

}
.compliance-wrapper .badges .badge-item {
    padding: 8px 12px;
    background-color: #050A1F;
    font-size: 16px;
    line-height: 1.3;
    border: 1px solid #9F9F9F;
    border-radius: 10px;
    text-transform: uppercase;
}

@media(max-width:991px){
  #tabAccordion .img-wh-500 {
      width: 100%;
      height: auto;
  }
  .header-btn-show-mobile{
    display: block !important;
  }
}

.sub-heading{
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  text-transform: uppercase;
}

/* List Style CSS Start */
.list-style-tick, .list-style-arrow {
  position: relative;
}
.list-style-tick li, .list-style-arrow li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
}
.list-style-arrow li {
    padding: 10px 10px 10px 40px;
    background-color: #000;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    border-radius: 10px;
}
.list-style-tick li::before, .list-style-arrow li::before{
    min-width: 20px;
    min-height: 20px;
    position: absolute;
    left: 0;
    line-height: 1;
    border-radius: 20px;
    top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tick-blue li:before{
  content: "\f26e";
    font-family: "bootstrap-icons" !important;
    background-color: var(--bs-dark-blue) !important;
    color: var(--bs-white);
}
.tick-white li:before{
  content: "\f26e";
    font-family: "bootstrap-icons" !important;
    background-color: var(--dropdown-bg) !important;
    color: var(--dark-blue);
}

.tick-gradient li{
  font-size: 18px;
  line-height: 1.4;
  padding: 10px 10px 10px 30px;
}
.tick-gradient li:before {
    content: "";
    background: url('../images/global/uploads/list-tick-gradient.svg');
    background-size: contain;
    width: 18px;
    height: 18px;
    top: 12px;
}

.list-style-arrow{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.list-style-arrow li:before {
    content: "";
    background: url('../images/global/uploads/list-arrow-right.svg');
    background-size: contain;
    min-width: 14px;
    min-height: 13px;
    top: 16px;
    left: 14px;
}
@media(min-width:992px){
  .tick-gradient li{
    font-size: 24px;
    line-height: 1.4;
    padding: 10px 10px 10px 38px;
  }
  .tick-gradient li:before{
    content: "";
    width: 24px;
    height: 24px;
    top: 15px;
  }
}

.list-style-icon li {
    font-size: 18px;
    line-height: 1.5;
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    align-items: center;
}

.list-style-icon li span {
    display: block;
    width: 30px;
    min-width: 30px;
    line-height: 1;
    margin-top: 4px;
}

@media(min-width:992px){
  .list-style-icon li {
      font-size: 22px;
      gap: 16px;
  }
  .list-style-icon li span {
      width: 40px;
      min-width: 40px;
      margin-top: 6px;
  }
}
/* List Style CSS End */


/* Card Style Dark */
.card-style-dark{
    background-color: var(--dark-blue);
    color: var(--bs-body-bg);
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    height: 100%;
  }
  .card-style-dark .card-icon{
    font-size: 40px;
    line-height: 1;
  }
.card-style-dark h2{
  font-size: 18px;
  line-height: 1.5;
  color: var(--bs-body-bg);
}
@media(min-width:992px){
  .card-style-dark{
    padding: 30px;
    border-radius: 30px;
  }
  .card-style-dark .card-icon{
    font-size: 50px;
    line-height: 1;
  }
  .card-style-dark h2{
    font-size: 24px;
  }
}


/* Accordion CSS Start */

.custom-accordion .accordion-button{
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

@media(min-width:992px){
  .custom-accordion .accordion-button{
    font-size: 24px;
    font-weight: 700;
}
}
@media(min-width:1200px){
  .custom-accordion .accordion-button{
    padding: 1.5rem;
}
}
.custom-accordion .accordion-button::after {
    content: "+";
    font-size: 28px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-accordion .accordion-button:not(.collapsed){
  background-color: var(--dropdown-hover-bg);
}
.custom-accordion .accordion-button:not(.collapsed)::after{
  content: "-";
  font-size: 32px;
  background: none;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Accordion CSS End */

/* Gradient Border Start */
.gradient-border {
  position: relative;
  background: transparent;
  padding: 2rem;
}

.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* border thickness */
  border-radius: 28px; /* same as parent */
  background: linear-gradient(180deg, #79D8F5, #3E4E66);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Gradient Border End */

/* New CSS End */

/* Request Demo Form Styles */
.request-demo-form {
  background-color: #1C274C !important;
  border-radius: 20px;
  padding: 40px;
  color: #fff;
}

.request-demo-form h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.request-demo-form p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #fff;
  opacity: 0.9;
}

.request-demo-form .form-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #fff;
}

.request-demo-form .form-select,
.request-demo-form .form-control {
  height: 48px;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  padding: 8px 16px;
}

.request-demo-form .form-select:focus,
.request-demo-form .form-control:focus {
  box-shadow: none;
  border: 2px solid #1972fa;
}

.request-demo-form .btn-generate {
  background: #4066F5;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 500;
  width: auto;
  transition: all 0.3s ease;
}

.request-demo-form .btn-generate:hover {
  background: #2952E3;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .request-demo-form {
    padding: 20px;
  }

  .request-demo-form h2 {
    font-size: 24px;
  }

  .request-demo-form p {
    font-size: 14px;
  }
}
.key-compliance-areas .card{
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 1px solid #6E7795;
  background-color: #161F3D;
}

@media (max-width: 991px) {
  .call-to-action{
    padding: 20px;
  }
}



/* Report Page CSS Start */
:root {
  --accent-blue: #053AC3;
}

/* Header */
.header-report{ background: var(--accent-blue); color:#fff; padding:15px; overflow:hidden; position:relative;}
.header-report::before{ content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/global/uploads/analysis-report-header-bg.png') no-repeat center center; background-size: cover; z-index: 0;}
.header-report .container{position: relative; z-index: 1;}
.header-report .header-top .logo{ text-align:center; margin-bottom:32px; display: block;}
.header-report .header-top .logo img{ height:36px; display:block; margin:0 auto; }
.header-report .header-bottom{ text-align:center; }
.header-report .header-bottom .report-title h2{ font-size:24px; font-weight:700; color:#fff; margin:0; }

/* Metadata */
.header-report .metadata{ display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap; }
.header-report .metadata span{line-height: 1;}
.header-report .metadata-item{ display:flex; align-items:center; gap:.5rem; font-size:1rem; }

/* Main */
.report-main-content{ padding-top:24px; padding-bottom:24px; }

/* Nav */
.report-main-content .nav-section{ margin-bottom:2rem; }
.report-main-content .nav-heading{ font-size:1.25rem; font-weight:700; color:#000; margin-bottom:1rem; text-align:center; }
.report-main-content .nav-controls{ display:flex; gap:1rem; align-items:center; flex-wrap:wrap; justify-content:center; }
.report-main-content .filter-buttons{ display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; }
.report-main-content .nav-controls .btn{ padding:.5rem 1rem; border:1px solid #D4D9D7; background:#F7F7F7; color:#000; border-radius:.5rem; font-size:1rem; display:inline-flex; align-items:center; gap:.5rem; text-decoration:none; }
.report-main-content .nav-controls .btn.active{ background:var(--accent-blue); color:#fff; border-color:var(--accent-blue); }
.report-main-content .nav-controls .action-buttons{ display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; }

/* Cards */
.report-main-content .profile-section{ overflow:unset; }
.report-main-content .profile-card{ border-radius:1rem; border:4px solid #E4E4E4; background:#FFFDFD; box-shadow:0px 3px 3px 0 rgba(5,58,195,.5); padding:1rem; display:flex; flex-direction:column; justify-content:center; height:100%; }
.report-main-content .profile-card h3{ font-size:1rem; font-weight:400; color:#858585; text-align:center; text-transform:uppercase; }
.report-main-content .profile-card .value{ color:#5473F5; text-align:center; font-size:1.4rem; font-weight:700; }

/* Stats */
.report-main-content .stats-section{ margin-bottom:3rem; overflow:unset; }
.report-main-content .section-heading{ margin-bottom:1rem; }
.report-main-content .stats-card{ border-radius:1rem; border:3px solid #E4E4E4; background:#FFFDFD; box-shadow:0px 3px 3px 0 #106E14; padding:1rem; text-align:center; height:100%; display:flex; flex-direction:column; justify-content:center; }
.report-main-content .stats-card h3{ font-size:1rem; color:#858585; margin-bottom:1rem; font-weight:400; text-transform:uppercase; }
.report-main-content .stats-card .value{ color:#5473F5; font-size:1.5rem; font-weight:700;    line-height: 1.2; }

/* Table */
.report-main-content .table-section{ margin-bottom:3rem; }
.report-main-content .table-container{ background:#fff; border:1px solid #D4D9D7; border-radius:.75rem; overflow-x:auto; }
.report-main-content .compliance-table{ width:100%; border-collapse:collapse; min-width:800px; }
.report-main-content .compliance-table th{ background:#F3F3F3; padding:1rem; text-align:left; font-weight:700; font-size:1rem; color:#000; line-height:1.2; }
.report-main-content .compliance-table td{ padding:0.5rem 1rem; border-bottom:1px solid #E4E4E4; font-size:1rem; color:#000; line-height:1.2; }
.report-main-content .compliance-table tr:last-child td{ border-bottom:none; }

.report-main-content .level-pill {
  display: inline-block;
  padding: .4rem 0.8rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
.report-main-content .level-federal{ background:#FAE4E4; border:1px solid #DC3545; color:#EE8383; }
.report-main-content .level-international{ background:#F3F3F3; border:1px solid #5473F5; color:#5473F5; }
.report-main-content .level-state{ background:#FFFBD6; border:1px solid #FFC107; color:#FFC107; }

/* Footer */
.report-footer{ background: var(--accent-blue); padding:3rem 1rem; color:#fff; position:relative; overflow:hidden;}
.report-footer::before{ content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/global/uploads/analysis-report-footer-bg.png') no-repeat center center; background-size: cover; z-index: 0;}
.report-footer .container{position: relative; z-index: 1;}
.report-footer .footer-content{ margin:0 auto; text-align:center; max-width:950px; }
.report-footer h3{ font-size:1.5rem; font-weight:700; margin-bottom:1rem; color:#fff; }
.report-footer p{ font-size:1.2rem; line-height:1.4; color:#fff; }

/* Breakpoints */
@media (min-width: 768px){
  .header-report{ padding:30px; }
  .report-main-content .nav-controls{ justify-content:space-between; }
  .report-main-content .nav-heading{ font-size:24px; margin-bottom:1.5rem; text-align:start; }
  .header-report .header-top .logo{ text-align:left; margin-bottom:16px; }
  .header-report .header-top .logo img{ margin-left:0; }
  .header-report .header-bottom{ text-align:left; }
  .header-report .header-bottom .report-title h2{ text-align:start; }
  .report-main-content .compliance-table{ min-width:0; }
}

/* Report Page CSS End */