@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primary: #0b2235;
  --text: #ffffffb2;
  --white: #ffffff;
  --black: #000000;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif !important;
  background-color: var(--primary) !important;
  user-select: none; /* Prevent text selection */
  -webkit-user-select: none; /* For Safari */
  -moz-user-select: none; /* For older Firefox versions */
  -ms-user-select: none; /* For older IE versions */
}

/* common-css-start */

.xrb_container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

.xrb_button {
  padding: 14px 24px;
  border-radius: 50px;
  background: var(--white);
  width: 100%;
  max-width: 230px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  outline: none;
  box-shadow: none;
  border: none;
}

.xrb_svg-line {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 80px;
  z-index: -1;
}

.xrb_svg-line svg {
  width: 100%;
  height: 100%;
  max-width: 1300px;
}

.xrb_svg-line.line-2 {
  top: calc(100% - 270px) !important;
}

.line-bottom-section {
  padding-top: 135px !important;
}

/* common-css-end */

header {
  margin: 0 0 -64px;
  position: relative;
  z-index: 10;
}

.xrb_hero-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-image: url("/assets/images/hero/Background.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding: 180px 0 0 !important;
}

.xrb_phone-img {
  width: 100%;
  max-width: 690px;
  min-width: 36vw;
  height: auto;
  margin: -120px auto 0 35px;
  display: block;
  object-fit: cover;
}

.xrb_hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.xrb_hero-content h1 {
  font-size: 70px;
  font-weight: 400;
  line-height: 90px;
  margin: auto;
}

.xrb_hero-content p {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  max-width: 1200px;
  margin: auto;
}

.xrb_social-media {
  position: absolute;
  right: calc(100vw - 80px);
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xrb_about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
}

.xrb_about-content > * {
  margin: 0;
}

.xrb_about-content h2 {
  background: linear-gradient(180deg, #96bbd2 0%, #20a0ef 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 40px;
  font-weight: 400;
  line-height: 48px;
}

.xrb_about-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
}

.xrb_badge {
  border: 1px solid #f8f6fe33;
  border-radius: 50px;
  font-family: "Inter";
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffffe5;
  padding: 10px 30px;
}

.xrb_heading {
  font-size: 60.5px;
  font-weight: 400;
  line-height: 76.8px;
  color: #ffffffe5;
  margin: 20px 0 10px;
}

.xrb_subheading {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #ffffff;
  margin: 0;
}

.xrb_card-wrapper .row > *:nth-child(3) .xrb_card::before,
.xrb_card-wrapper .row > *:nth-child(6) .xrb_card::before,
.xrb_card-wrapper .row > *:nth-child(1) .xrb_card::after,
.xrb_card-wrapper .row > *:nth-child(2) .xrb_card::after,
.xrb_card-wrapper .row > *:nth-child(3) .xrb_card::after,
.xrb_card-wrapper .row > *:nth-child(6) .xrb_card::after {
  display: none;
}

.xrb_card {
  border: 1px solid #dcdcdc59;
  border-radius: 30px;
  height: 100%;
  padding: 80px 50px 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.xrb_card::before {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: absolute;
  border: 1px solid #747474;
  right: -25px;
  top: -25px;
}

.xrb_card-wrapper .row:last-child > * .xrb_card::after {
  content: "";
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: absolute;
  border: 1px solid #747474;
  right: -25px;
  bottom: -25px;
}

.xrb_card-count {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #ffffff40;
  font-family: Inter;
  font-size: 14.13px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.xrb_card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #ffffffe5;
}

.xrb_card-content {
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffffb2;
}

.xrb_blur-box {
  width: 251px;
  height: 251px;
  filter: blur(100px);
  background: #96bbd296;
  border-radius: 100%;
  position: absolute;
  bottom: 220px;
  right: -150px;
  margin: auto;
}

.xrb_join-card-outer {
  background: linear-gradient(
    265.86deg,
    #01002b -2.46%,
    #20a0ef 25.82%,
    #005c95 60.72%,
    #080411 109.3%
  );
  border-radius: 25px;
  padding: 1px;
  overflow: hidden;
  position: relative;
}

.xrb_join-card-outer:before {
  content: "";
  width: 100%;
  max-width: 640px;
  height: 280px;
  background: #3982a399;
  filter: blur(150px);
  position: absolute;
  right: -50px;
  bottom: -100px;
}

.xrb_join-card {
  background: #0d263a;
}

.xrb_join-card-content {
  padding: 60px;
  max-width: 720px;
}

.xrb_join-card-content h3 {
  font-size: 32px;
  font-weight: 400;
  line-height: 39.01px;
  color: var(--white);
}

.xrb_join-card-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
}

.xrb_join-card-image > img {
  max-width: 220px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.xrb_join-card-image {
  display: flex;
  justify-content: center;
  padding-right: 20px;
}

.xrb_join-card-image .phone-bottom {
  margin: 90px 0 0 -100px;
}

.xrb_accordion {
  max-width: 780px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.xrb_accordion .xrb_accordion-outer-line {
  background: linear-gradient(180deg, #96bbd2 0%, #20a0ef 100%);
  padding: 1px;
  border-radius: 15px;
}

.xrb_accordion .xrb_accordion-outer-line .accordion-item {
  background: #0b2235;
  padding: 20px;
  border-radius: 15px;
}

.xrb_accordion
  .xrb_accordion-outer-line
  .accordion-item
  .accordion-header
  button {
  background: linear-gradient(180deg, #96bbd2 0%, #20a0ef 100%);
  -webkit-background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  justify-content: space-between;
}

.xrb_accordion
  .xrb_accordion-outer-line
  .accordion-item
  .accordion-header
  button::after {
  content: "";
  width: 10px !important;
  height: 10px !important;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  border-radius: 2px;
  transform: rotate(-45deg);
  transition: 0.2s;
}

.xrb_accordion
  .xrb_accordion-outer-line
  .accordion-item
  .accordion-header
  button:not(.collapsed)::after {
  transform: rotate(135deg);
  transition: 0.2s;
}

.xrb_accordion .xrb_accordion-outer-line .accordion-item .accordion-body {
  padding: 20px 0 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--white);
}

.xrb_blur-box-container {
  width: 100%;
  max-width: 640px;
  height: 280px;
  filter: blur(100px);
  background: #3982a3cc;
  position: absolute;
  bottom: -50px;
  left: -450px;
  margin: auto;
}

.xrb_blur-box-container.right-side {
  top: 0;
  bottom: 0;
  right: -450px;
  left: auto;
}

.xbr_Feature-card {
  border-bottom: 1px solid #635189;
  height: calc(100% - 15px);
  margin: 15px 0 0;
}

.xbr_Feature-card .xbr_Feature-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 39.01px;
  color: var(--white);
  margin: 0 0 12px;
}

.xbr_Feature-card .xbr_Feature-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
  margin: 0 0 12px;
}

.xbr_Feature-card .xbr_Feature-card-image {
  margin: 0 0 24px;
}

.xbr_Feature-card .xbr_Feature-card-image img {
  width: 100%;
}

.contact-section {
  background-image: url("/assets/images/world-map.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  position: relative;
}

.xrb_form-wrapper-outline {
  background: linear-gradient(180deg, #96bbd2 0%, #20a0ef 100%);
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  padding: 1px;
}

.xrb_form-wrapper {
  background: #0a2135;
  border-radius: 25px;
  padding: 42px 32px;
}

.xrb_from-group {
  margin: 0 0 20px;
}

.xrb-from-control-wrapper {
  position: relative;
}

.xrb-from-control-wrapper > .xrb_from-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 15px;
}

.xrb-from-control-wrapper > input.xrb-from-control {
  padding-left: 50px;
}

.xrb-from-control {
  border: 1px solid #96bbd2;
  width: 100%;
  padding: 19px;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #b1b1b1;
}

.xrb_from-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
  display: block;
  margin: 0 0 8px;
}

.xrb_form-wrapper .xrb_button {
  border-radius: 12px;
  max-width: 100%;
}

.xbr_footer {
  background: #1a1a1a66;
  padding: 50px 0 0;
}

.xbr_footer .xrb_about-content h2 {
  font-size: 60px;
}

.xbr_footer .xbr_footer-bottom {
  padding: 30px 0 0;
  border-top: 1px solid #20a0ef;
  margin: 30px 0 0;
}

.xbr_footer .xbr_copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--white);
}

.xbr_footer .xbr_footer-link {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
  color: var(--white);
  text-decoration: none;
}

#successModal {
  background: #0b223587;
}

#successModal .modal-dialog .modal-content {
  background: linear-gradient(180deg, #96bbd2 0%, #20a0ef 100%);
  padding: 1px;
  border-radius: 24px;
}

#successModal .modal-dialog .modal-content .modal-body {
  background: #0a2135;
  border-radius: 24px;
  padding: 42px 32px 32px;
}

#successModal .modal-dialog .modal-content .modal-body button {
  border-radius: 12px;
  max-width: 100%;
}

#successModal .modal-dialog .modal-content .modal-body .xbr_modal-content {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.xrb_content-box {
  color: var(--white);
  line-height: 32px;
  padding: 3rem 0;
}

.xrb_content-box h2 {
  background: linear-gradient(180deg, #96bbd2 0%, #20a0ef 100%);
  -webkit-background-clip: text;
  color: transparent;
  margin: 0 0 15px;
}

.xrb_content-box a {
  color: var(--white);
}

/* Responsive-css-start */

@media (max-width: 1400px) {
  .xrb_social-media {
    left: 0 !important;
    right: 0 !important;
    bottom: 50px !important;
    top: auto !important;
  }

  .xrb_social-media > * {
    flex-direction: row !important;
  }

  .xrb_svg-line {
    display: none;
  }

  .line-bottom-section {
    padding-top: 3rem !important;
  }
}

@media (max-width: 1200px) {
  .xrb_phone-img{
    min-height: auto !important;
    margin: 50px auto !important;
    position:static !important;
  }

  .xrb_container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .xrb_about-content {
    max-width: 100%;
  }

  .xrb_heading {
    font-size: 50px;
  }
}

@media (max-width: 1024px) {
  .xrb_card::before,
  .xrb_card::after {
    display: none;
  }

  .xrb_card {
    padding: 40px !important;
  }

  .xrb_form-wrapper-outline {
    margin: 20px auto 0 !important;
  }

  .contact-section {
    background-size: auto !important;
  }

  .xrb_hero-wrapper {
    min-height: auto !important;
    padding: 150px 0 !important;
  }

  .xrb_join-card-content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .xrb_hero-content h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .xrb_hero-content p {
    font-size: 16px;
    line-height: 26px;
  }

  .xrb_about-content h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .xrb_heading {
    font-size: 35px;
    line-height: 45px;
  }

  .xrb_join-card-content {
    padding: 30px;
    max-width: 100%;
  }

  .xrb_join-card-content h3 {
    font-size: 35px;
    line-height: 45px;
  }

  .xrb_accordion
    .xrb_accordion-outer-line
    .accordion-item
    .accordion-header
    button {
    font-size: 22px;
  }

  .xrb_accordion .xrb_accordion-outer-line .accordion-item .accordion-body {
    font-size: 16px;
  }

  .xbr_Feature-card .xbr_Feature-title {
    font-size: 35px;
    line-height: 45px;
  }

  .xbr_footer .xrb_about-content h2 {
    font-size: 35px;
    line-height: 45px;
  }

  .xbr_Feature-card{
    border-bottom: 1px solid #635189 !important;
  }
}

/* Responsive-css-end */
