* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Montserrat Alternates", sans-serif; */
  font-family: "Lexend", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  color: #727885;
  font-size: 15px;
  line-height: 30px;
  letter-spacing: 0.6px;
  font-weight: 400;
  margin-bottom: 20px;
}
a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.tp-toogle a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 60px;
  width: 56px;
  height: 56px;
  display: inline-block;
  text-align: center;
  line-height: 56px;
  margin-right: 0px;
  color: #fff;
  transition: 0.3s ease;
}

.header-space.header-bottom-border {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 20px;
  position: relative;
}

/* .header-right::before {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  right: 327px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
} */

.header-right {
  text-align: center;
}

.tp-btn-sm.animated-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 45px;
  line-height: 45px;
  background-image: linear-gradient(270deg, #01affe 0%, #0175ff 100%);
  background-size: 200% 200%; /* Bigger to allow movement */
  background-position: left top;
  color: #fff;
  padding: 0 25px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: background-position 0.5s ease, background-size 0.5s ease;
  cursor: pointer;
  z-index: 1;
  text-align: center;
}

/* Animate on hover */
.tp-btn-sm.animated-btn:hover {
  background-position: right bottom;
}

@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.tp-btn-sm.animated-btn {
  background-image: linear-gradient(270deg, #01affe, #0175ff, #01affe);
  background-size: 400% 400%;
  animation: moveGradient 4s ease infinite;
}

.tp-main-menu-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tp-main-menu > nav > ul {
  display: flex;
  align-items: center;
}

.tp-main-menu > nav > ul li a.nav-link {
  position: relative;
  padding: 20px 20px;
  display: inline-block;
  transition: 0.3s ease;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: #fff;
}

section.banner-area {
  min-height: 580px;
  position: relative;
  z-index: 1;
  padding: 160px 0 0 0;
}

.banner-img {
  background-image: url(../assets/images/hero-1.jpg);
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: cover;
  background-position: bottom;
}

header.tp-header-transparent.header_sticky {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

.header_sticky.is-sticky {
  position: fixed !important;
  top: 0;
  width: 100%;
  background-image: linear-gradient(180deg, #0b4eb7 0%, #012869 100%);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* .tp-header-logo.tp-header-logo-border::after {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  left: 327px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
} */

.tp-header-logo.tp-header-logo-border a img {
  width: 100%;
  max-width: 160px;
}

.banner-content h1 {
  color: #fff;
  font-size: 55px;
  line-height: 60px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-align: center;
  margin-bottom: 50px;
}

.text-container {
  overflow: hidden; /* Prevent characters from overflowing */
  display: inline-block;
}

.char {
  display: inline-block;
  white-space: pre; /* preserve spacing */
  will-change: transform, opacity;
}

.main-box-navbar-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

li.has-dropdown a.nav-link:hover {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity));
}

li.has-dropdown ul.has-dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100px;
  z-index: 1;
  transition: all 0.4s;
  border-radius: 5px;
  width: 280px;
  background: linear-gradient(to bottom, rgb(16 51 152), rgb(23 37 84));
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

li.has-dropdown {
  position: relative;
}

li.has-dropdown:hover ul.has-dropdown-menu {
  visibility: visible;
  transition: all 0.5s ease-in-out;
  opacity: 1;
  z-index: 9;
  top: 60px;
  position: absolute;
  transition: all 0.4s;
}

ul.has-dropdown-menu span.desc {
  display: block;
  font-size: 12px;
  color: rgba(219, 234, 254, 0.8);
  font-weight: 300;
}

a.dropdown-item-has {
  display: block;
  padding: 0.875rem 1.25rem;
  color: white;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

a.dropdown-item-has:hover {
  background: rgba(59, 130, 246, 0.1);
}

.banner-btn a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(180deg, #01affe 0%, #0175ff 100%);
  text-align: center;
  padding: 12px 20px;
  position: relative;
  border-radius: 5px;
  letter-spacing: 0.1em;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s ease;
}

.banner-btn {
  text-align: center;
}

section.about-area {
  position: relative;
  padding: 60px 0;
}

.about-content h5 {
  padding: 0.75rem 1.25rem;
  border: 1.4px solid #017cff;
  border-radius: 20px 20px 0px 20px;
  color: #017cff;
  width: fit-content;
  margin-bottom: 20px;
  font-size: 15px;
}

.about-content h2 {
  font-size: 30px;
  line-height: 45px;
  font-weight: 600;
  letter-spacing: 0.6px;
  color: #017cff;
  text-transform: capitalize;
}

.tp-about-list li {
  margin-bottom: 13px;
  list-style: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  color: #000;
  float: left;
  width: 40%;
}

.tp-about-list li i {
  color: #162de4;
  margin-right: 8px;
  font-size: 16px;
}

.about-content .banner-btn {
  text-align: left;
}

.about-img img {
  max-width: 480px;
}

.about-img {
  text-align: end;
}

section.cta-area {
  position: relative;
  padding: 60px 110px 60px;
}

.cta-wrapper {
  padding: 65px 100px 65px;
  border-radius: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../assets/images/cta-background.png);
}

.tp-cta-title {
  font-weight: 600;
  font-size: 50px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
}

.cta-wrapper p {
  font-weight: 300;
  font-size: 16px;
  line-height: 29px;
  color: #fff;
  margin-bottom: 0;
}

.tp-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background-image: linear-gradient(180deg, #01affe 0%, #0175ff 100%);
  text-align: center;
  padding: 20px 25px;
  position: relative;
  border-radius: 10px;
  letter-spacing: 0.1em;
  z-index: 1;
  overflow: hidden;
  transition: 0.3s ease;
}

.section-heading h5 {
  padding: 0.75rem 1.25rem;
  border: 1.4px solid #017cff;
  border-radius: 20px 20px 0px 20px;
  color: #017cff;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: 15px;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

section.services-area {
  position: relative;
  background-image: url(../assets/images/about-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  /* background-image: linear-gradient(180deg, #01aefe 0%, #017cff 100%); */
}

.services-main-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 0;
  grid-gap: 12px;
  position: relative;
}

.section-heading h3 span {
  background-image: linear-gradient(94deg, #009bff 46%, #3a55ff 72%);
  color: #fff0;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 600;
  vertical-align: baseline;
}

.section-heading h3 {
  color: #000;
  font-size: 35px;
  font-weight: 500;
}

.services-box {
  position: relative;
  transition: 0.4s all;
}

.services-box:hover {
  transform: translateY(-12px);
}

.services-box a {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #dddddd;
  box-shadow: 0px 0px 8px #dddddd;
  background-image: linear-gradient(180deg, #0b4eb7 0%, #012869 100%);
}
.service-title h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.6px;
}

.service-description p {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}

.service-title p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
}

.about-content p b {
  color: #000;
}

section.video-area {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.video-type video {
  width: 100%;
  height: 593px;
  border-radius: 30px;
}

#sd-container {
  position: absolute;
  bottom: 10px;
  left: 49%;
  transform: translateY(-150%);
}

.arrow {
  position: relative;
  width: 42px;
  height: 16px;
  opacity: 0;
}
.arrow::before,
.arrow::after {
  content: "";
  width: 21px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  display: inline-block;
}
.arrow::before {
  transform: rotate(45deg) translateX(25%);
}
.arrow::after {
  transform: rotate(-45deg) translateX(-25%);
}
.arrow:nth-child(1) {
  top: -50px;
  opacity: 1;
  -webkit-animation: arrow2 1s ease 0s infinite;
  animation: arrow2 1s ease 0s infinite;
}
.arrow:nth-child(2) {
  top: -25px;
  -webkit-animation: arrow1 1s ease 0.25s infinite;
  animation: arrow1 1s ease 0.25s infinite;
}

@-webkit-keyframes arrow1 {
  from {
    opacity: 0;
    top: -25px;
  }
  to {
    opacity: 0;
    top: 0px;
  }
  50% {
    opacity: 1;
  }
}

@keyframes arrow1 {
  from {
    opacity: 0;
    top: -25px;
  }
  to {
    opacity: 0;
    top: 0px;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes arrow2 {
  from {
    opacity: 0;
    top: -35px;
  }
  to {
    opacity: 0;
    top: -10px;
  }
  50% {
    opacity: 1;
  }
}
@keyframes arrow2 {
  from {
    opacity: 0;
    top: -35px;
  }
  to {
    opacity: 0;
    top: -10px;
  }
  50% {
    opacity: 1;
  }
}

.brand-logo-slider {
  overflow: hidden;
  background: #fff;
  padding: 40px 0;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(200px * 12); /* width = image width * total number of slides */
  animation: scroll 40s linear infinite;
}

.slide {
  width: 160px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 200px;
  height: 100px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.trusted-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
}

.trusted-line.container span {
  color: #017cff;
  font-size: 18px;
}

.trusted-line hr {
  flex: 1;
  height: 1px;
  background-color: #ccc;
  border: none;
}

h3.counter-number {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 3px;
}

.counter-box {
  position: relative;
  padding: 10px;
  text-align: center;
}

h5.counter-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 29px;
  color: #ffffff;
}

footer.tp_footer {
  background-color: #000d44;
  position: relative;
  padding: 60px 0;
}

.tp-footer-logo {
  margin-bottom: 35px;
}

.tp-footer-logo img {
  max-width: 160px;
}

.tp-footer-widget-3 p {
  color: #b9bac0;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  margin-bottom: 32px;
}

.tp-footer-social-1 a {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 27.5px;
  height: 45px;
  width: 45px;
  display: inline-block;
  text-align: center;
  margin-right: 5px;
  line-height: 44px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.tp-footer-social-1 a::before {
  position: absolute;
  content: "";
  width: 100%;
  background: linear-gradient(180deg, #00eeff 0%, #003cff 100%);
  top: 0;
  left: 0;
  border-radius: 50%;
  height: 100%;
  opacity: 0;
  color: #fff;
  transition: 0.3s ease;
  z-index: -1;
}

.tp-footer-social-1 i {
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

.tp-footer-top-widget-1 {
  padding-left: 57px;
}

.tp-footer-widget-3 .tp-footer-widget__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 26px;
  display: block;
}

.tp-footer-widget-3 ul li {
  transition: all 0.3s 0s ease-out;
}

.tp-footer-widget-3 li a {
  font-weight: 500;
  font-size: 14px;
  line-height: 31px;
  color: #b9bac0;
  background-image: linear-gradient(#fcfcff, #d8d8da),
    linear-gradient(#ffffff, #dbdbe6);
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  transition: 0.3s ease;
}
.tp-footer-widget-3 li a:hover {
  color: #fff;
  background-size: 0 1px, 100% 1px;
}

.copyright-area {
  padding: 20px 0;
  background-color: #000d44;
  border-top: 1px solid #fff;
}

.copyright-area .copyright-content p {
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.copyright-area .copyright-content p a {
  background-image: linear-gradient(94deg, #009bff 46%, #3a55ff 72%);
  color: #fff0;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-weight: 600;
  vertical-align: baseline;
}

.copyright-area .copyright-content p {
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-bottom: 0;
}

.tp-footer-social-1 a:hover {
  background-image: linear-gradient(94deg, #009bff 46%, #3a55ff 72%);
}

.header-btn {
  display: inline-block;
}

.animated-btn .text {
  display: block;
  transition: transform 0.4s ease;
  width: 100%;
  text-align: center;
}

.animated-btn .top {
  transform: translateY(0);
}

.animated-btn .bottom {
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(0);
}

.animated-btn:hover .top {
  transform: translateY(-100%);
}

.animated-btn:hover .bottom {
  transform: translateY(-100%);
}

.tp-cta-btn.text-lg-end a.tp-btn-sm.animated-btn.tp-btn {
  height: 55px;
  line-height: 57px;
}

.mobile-menu i {
  font-size: 35px;
  color: #fff;
}

/* mobile navbar css  */

/* Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 2000;
  transition: right 0.3s ease;
  padding: 20px;
  box-shadow: -3px 0 10px rgb(0 0 0 / 58%);
  overflow-y: scroll;
}

.mobile-sidebar.open {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 18px;
}

.close-btn {
  cursor: pointer;
  font-size: 24px;
}

/* Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 38%);
  z-index: 1500;
  display: none;
}

.mobile-overlay.active {
  display: block;
}

/* Dropdowns */
.mobile-menu-list {
  list-style: none;
  padding: 0;
}

.mobile-menu-list li {
  margin: 15px 0;
}

.dropdown-toggle {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

.dropdown-toggle .icon {
  transition: transform 0.3s;
}

.submenu {
  display: none;
  padding-left: 15px;
}

.submenu li {
  margin: 8px 0;
}

.dropdown-toggle::after {
  display: none;
}

.mobile-menu-header > span > img {
  max-width: 180px;
}

ul.mobile-menu-list li a {
  font-size: 22px;
  font-weight: 500;
  color: #000;
}

ul.submenu li a {
  color: #017cff;
  font-weight: 400;
  font-size: 18px;
}
