/* @import url("https://fonts.googleapis.com/css2?family=Bentham&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://unpkg.com/boxicons@latest/css/boxicons.min.css");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
}

html {
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
  height: -webkit-fill-available;
  color: #5e6282;
  background-color: #0b1d26;
}
.text-orange {
  color: #fbd784 ;
}
body.overflow-hidden {
  overflow: hidden;
}
.logo {
  width: 200px;
  display: block;
}

.sticky-logo {
  display: none;
}

.header.is-sticky .logo {
  display: none;
}

.header.is-sticky .sticky-logo {
  display: block;
  width: 200px;
}

main {
  overflow: hidden;
}

.highlight {
  color: #fbd784;
  font-weight: 600;
}
a {
  text-decoration: none !important;
}
a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  text-decoration: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

.container {
  max-width: 1462px;
  height: auto;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Navigation Start   */

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
}

.header-container {
  width: 100%;
  padding: 0 24px;
}

.header.on-scroll {
  background: rgba(11, 29, 38, 0.25);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar {
  width: 100%;
  transition: all 0.4s ease-in-out;
  padding: 20px 0;
  box-shadow:
    0 0.5rem 1rem rgba(0, 0, 0, 0.15),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.navbar .header-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.brand svg {
  max-width: 65px;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  transform: translateX(-150%);
  z-index: 10;
  background-color: #0b1d26;
}

.menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-is-active .menu {
  transform: translateX(0%);
}

.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  row-gap: 24px;
}

.menu-link {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.menu-block {
  display: flex;
  column-gap: 30px;
  margin-left: auto;
  align-items: center;
}

.menu-block-link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}

.menu-block-link .bx {
  font-size: 20px;
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  padding: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
  margin-right: 24px;
}

.burger-line-wrapper {
  height: 20px;
  width: 20px;
  position: relative;
}

.burger-line {
  position: absolute;
  display: block;
  left: 0px;
  width: 20px;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 20px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  background-color: #ffffff;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.close-menu {
  order: 0;
  background-color: #0b1d26;
}

.header-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.menu-is-active .header-backdrop {
  visibility: visible;
  opacity: 0.5;
}

.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}

.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}

/* Header Navigation End   */

/* Hero Section Start   */

.hero-section {
  position: relative;
  padding-bottom: 140px;
  overflow: hidden;
  max-height: 100vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    -33.26deg,
    rgba(11, 29, 38, 0.59) 0%,
    rgba(11, 29, 38, 0.6) 100%
  );
  z-index: 1;
}

#section-00 p {
  color: #fff !important;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 550px;
  z-index: 5;
  background-image: linear-gradient(
    180deg,
    rgba(11, 29, 38, 0),
    #0b1d26,
    #0b1d26
  );
}

.hero-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
}

.hero-image-wrapper img.sky {
  margin-top: 0%;
  position: relative;
  transform: translateY(-50%);
  height: 100vh;
  object-fit: cover;
}

.hero-image-wrapper img.mountains {
  margin-top: -170%;
  z-index: 1;
  height: 100vh;
  object-fit: cover;
}

.hero-image-wrapper img.man-standing {
  margin-top: -150%;
  z-index: 4;
  height: 330px;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 20%;
  left: 0;
  right: 0;
  z-index: 6;
  height: auto;
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-subtitle {
  font-size: 12px;
  color: #fbd784;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}

.hero-subtitle::before {
  content: "";
  height: 2px;
  width: 40px;
  /* background-color: #fbd784; */
  display: inline-block;
}

.hero-title {
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 32px;
}

.hero-title span {
  display: inline-block;
}

.hero-action {
  font-size: 16px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #fff;
}

.hero-action svg {
  animation: scroll-down-arrow 2.5s infinite;
}

.hero-action a {
  background-color: #fff;
  padding: 1.25rem 2.5rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  color: #262626;
  cursor: pointer;
  z-index: 99999;
  margin-top: 2rem;
}

@keyframes scroll-down-arrow {
  0%,
  20%,
  55%,
  80%,
  100% {
    transform: translate3d(-50%, 0, 0);
  }

  40% {
    transform: translate3d(-50%, -15px, 0);
  }

  70% {
    transform: translate3d(-50%, -10px, 0);
  }

  90% {
    transform: translate3d(-50%, -5px, 0);
  }
}

/* Hero Section End   */

.why-section {
  position: relative;
  z-index: 10;
  margin-top: 0;
  background-color: #0b1d26;
}
h5#heading {
  opacity: 0;
}
.why-section .max-w-550 {
  max-width: 550px;
}
.why-section .max-w-sm {
  max-width: 220px;
}
.why-section h5 {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.why-section p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 400;
  /* padding-bottom: 8rem; */
  padding-top: 2rem;
  text-align: left;
}
.why-section ul.why_list {
  list-style: inside;
}
.why-section ul.why_list li {
  text-align: left;
}
.why-section .content-row {
  text-align: center;
  justify-content: center;
  gap: 160px;
}
.why-section .text-center {
  text-align: -webkit-center;
}

@media (max-width: 767px) {
  .why-section p {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    padding-bottom: 4rem;
  }
  .why-section p.pb-sm-0 {
    padding-bottom: 4rem;
  }
  .why-section .content-row {
    text-align: center;
    justify-content: center;
    gap: 0px;
  }
}

.content-section {
  position: relative;
  z-index: 5;
  margin-top: -50%;
  padding-bottom: 120px;
}

.content-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.content-wrapper:not(:last-child) {
  margin-bottom: 80px;
}

.content-wrapper .content-image {
  width: 100%;
}

.content-image img {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.content-content {
  flex: 1;
  padding-left: 0px;
}

.content-subtitle {
  font-size: 14px;
  color: #fbd784;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 6px;
  margin-bottom: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

/* .content-subtitle::before {
  content: "";
  height: 2px;
  width: 40px;
  background-color: #fbd784;
  display: inline-block;
} */

.content-title {
  font-size: 34px;
  color: #fff;
  margin-bottom: 27px;
  font-weight: 500;
}

.content-title span {
  display: inline-block;
  transition: all 0.4s ease-in-out;
}

.content-copy {
  font-size: 14px;
  color: #ffffff;
  line-height: 32px;
  margin-bottom: 27px;
  transition: all 0.4s ease-in-out;
}

.content-action {
  color: #fbd784;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  transition: all 0.4s ease-in-out;
}

.content-action:hover {
  gap: 20px;
}

.content-subtitle .counter {
  font-size: 140px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
  letter-spacing: 0;
}

/* Footer Section Start   */

footer {
  padding-top: 100px;
  padding-bottom: 50px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 50px;
}

.footer-column-logo {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer-copy-rights {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
}

.footer-column-link {
  width: auto;
}

.footer-logo {
  margin-bottom: 19px;
}

footer ul{
  padding-left: 0 !important;
}

.footer-copy {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-heading {
  font-size: 24px;
  color: #fbd784;
  font-weight: bold;
  margin-bottom: 24px;
  font-family: "Montserrat", sans-serif;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-item a {
  color: #ffffff;
  font-size: 18px;
  line-height: 32px;
}

/* Footer Section End   */

.slider {
  position: fixed;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  z-index: 9;
}

.slider .container {
  padding: 0;
  display: flex;
  gap: 32px;
  justify-content: flex-end;
  max-width: 1500px;
}

.slider-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 15px 0;
}

.slider-list-item a {
  color: #ffffff;
  font-weight: bold;
}

.slider-progress {
  height: auto;
  width: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}

.slider-progress-bar {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

ul.technology_ul {
  margin-left: 1rem;
}

ul.technology_ul li {
  list-style: disc;
  list-style-type: circle;
  color: #fff;
}

ul.pricing_points li {
  display: flex;
  align-items: center;
  margin-bottom: 1.4rem;
  font-size: 1.125rem;
}

/* Card stacking css starts */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  /* background-color: #eeeeee; */
  color: #292929;
  /* font-family: sans-serif; */
  font-size: 1rem;
  line-height: 1.5;
  transition:
    color 0.3s,
    background-color 0.3s;
}

h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading {
  font-size: 2.5rem;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0.04em 0.04rem 0 #81b5ab;
}

.section {
  overflow: hidden;
}

.wrapper {
  height: 100vh;
}

.list {
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  padding: 0.2rem;
}

.item {
  width: 100vw;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  box-shadow: rgb(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
}

.item_number {
  font-size: 1.5rem;
  height: 3rem;
  width: 3rem;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  position: absolute;
  top: 6rem;
  left: 3rem;
}

.item_content {
  background-color: #fff;
  color: #292929;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem;
  display: flex;
  position: relative;
  width: 50%;
}
.item_content_100 {
  background-color: #0b1d26;
  color: #292929;
  width: 100% !important;
}
.item_content_center {
  align-items: center;
}

/* pricing start */
.position-absolute {
  position: absolute !important;
}
.section_pricing_content a {
  color: #ffffff;
}
.section_pricing_content {
  /* position: absolute; */
  z-index: 9;
  margin-left: 300px;
  margin-top: 5.6875rem;
  /* width: 300px; */
  text-align: center;
}
.section_pricing_content h5 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
}
.section_pricing_content p {
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 4rem;
  margin-top: 2.5rem;
}
.section_pricing_content a.talktosales {
  font-size: 1.25rem;
  color: #000;
  background-color: #ffffff;
  padding: 20px 42px;
  border-radius: 100px;
}
ul.pricing_points li img {
  margin-left: 2.25rem;
  margin-right: 1.25rem;
}
/* pricing close */

.item_media {
  object-fit: cover;
  width: 50%;
  height: 100%;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-vertical {
  padding: 2rem;
}

@media (max-width: 575.98px) {
  .heading {
    font-size: 2.5rem;
  }

  .item {
    display: flex;
    flex-direction: column;
  }

  .item_content,
  .item_media {
    height: 50vh;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .item_number {
    font-size: 0.5rem;
    top: 1.5rem;
  }
}
/* Card stacking css closed */

/* Hero Section */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  background-size: cover;
  background-position: center;
  padding: 95px 0;
  text-align: center;
}

.hero-section h1 {
  font-weight: 700;
  font-size: 3rem;
}

.hero-section p {
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
}

.email-link {
  color: #9d7dfa;
  text-decoration: none;
}

/* Cards and Containers */
.contact-card {
  background-color: #1a1d21;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  border: 1px solid #2d3136;
}

.info-box {
  margin-bottom: 25px;
}

.info-box h3 {
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #d1d1d1;
}

.contact-detail i {
  margin-right: 15px;
  font-size: 1.2rem;
}

/* Form Styling */
.form-control,
.form-select {
  background-color: #24282d;
  border: 1px solid #3a3f45;
  color: #ffffff;
  border-radius: 25px;
  padding: 12px 20px;
  margin-bottom: 15px;
}

.form-control:focus,
.form-select:focus {
  background-color: #2a2f35;
  border-color: #007bff;
  color: #ffffff;
  box-shadow: none;
}

textarea.form-control {
  border-radius: 15px;
  resize: none;
}

.btn-send {
  background-color: #2b80ff;
  border: none;
  border-radius: 25px;
  padding: 12px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  transition: 0.3s;
}

.btn-send:hover {
  background-color: #1a66ff;
}

/* Custom Placeholder Color */
::placeholder {
  color: #6c757d !important;
  opacity: 1;
}

.get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0px;
}

.get-in-touch li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #d1d1d1;
}
.get-in-touch li a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff !important ;
}
.get-in-touch li a strong {
  font-size: 0.9rem;
  color: #d1d1d1 !important ;
}

#thank-you-section {
  padding: 100px 0 0 0;
  text-align: center;
}
.rounded-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fbd784;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
}
.main-btn {
  background-color: #cb372a;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

#contactUs {
    background-image: url(../images/contact-us.webp);
    background-size: cover;
    height: 70vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#contactUs::before {
  display: none;
}
#contactUs::after {
  background-image: linear-gradient(to bottom, #00000039, #000);
  height: 100%;
  width: 100%;
  z-index: 1;
}

#contactUs .col-md-12 {
  position: relative;
  color: white;
  z-index: 2;
}

.step-2-title {
  margin-top: 50px;
}

.desktop-only {
  display: block !important;
}

.mobile-only{
  display: none !important;
}

.subtitle {
  margin-top: 40px;
}

.main-button {
  background-color: #e83c2d;
  border: none;
  border-radius: 25px;
  padding: 8px 35px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}
.section-padding {
  padding: 80px 0;
}

#features {
  background-color: white;
}

#features h2{
  color: #000;
  
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  color: #000;
}

.feature-card:hover {
  transform: translateY(-8px);
}


 .cta-section {
      background: #212529;
      color: #fff;
    }

    .gms-banner{
      background-image: url('../images/gms-banner.webp') !important;
      background-size: cover;
      background-position: center;

    }

    .privacy-banner{
      background-image: url('../images/privacy-policy.jpg') !important;
      background-size: cover;
      background-position: center;

    }

    .faq-banner{
      background-image: url('../images/faqs.webp') !important;
      background-size: cover;
      background-position: center;
    }


       .faq-hero {
      padding: 100px 0 60px;
      text-align: center;
      background: linear-gradient(180deg, #12131a, #0e0f14);
    }

    .faq-hero h1 {
      font-size: 42px;
      font-weight: 700;
    }

    .faq-hero p {
      color: #bdbdbd;
      margin-top: 10px;
    }

    .faq-section {
      padding: 60px 0;
    }

    .accordion-item {
      background-color: #161823;
      border: 1px solid #242635;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
    }

    .accordion-button {
      background-color: #161823;
      color: #ffffff;
      font-weight: 600;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background-color: #1d2030;
      color: #88c5e7;
    }

    .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }

    .accordion-body {
      color: #cfcfcf;
      line-height: 1.7;
      background-color: #161823;
    }
