/*********************  Default-CSS  *********************/
:root {
  --primary-color: #061e36;
  --secondary-color: #6eb8bb;
  --white: #fff;
  --black: #000;
  --transition: all 0.5s ease 0s;
  --font-Inter: "Inter", sans-serif;
  --font-Jakarta: "Plus Jakarta Sans", sans-serif;
  --font-Poppins: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: var(--font-Inter);
  font-weight: 400;
  color: var(--black);
  background-color: var(--white);
  font-size: 16px;
  line-height: 2;
}

a,
span,
a:hover,
a:active,
button {
  text-decoration: none;
}

a,
div a:hover,
div a:active,
div a:focus,
button {
  text-decoration: none;
  transition: var(--transition);
}

p {
  margin: 0;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  margin: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

/*********************  Header CSS Start  *********************/

.main-wrapper {
  overflow: hidden;
}
.in_header_wrapper {
  padding-top: 78px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  background-color: var(--primary-color);
  z-index: 999;
}

header.fixed {
  padding: 6px 0;
}

.in_header_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo_hold a {
  font-weight: bold;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font: var(--font-Jakarta);
}

.menu_block ul li {
  display: inline-block;
}

.menu_block ul li:not(:last-child) {
  margin-right: 37px;
}

.menu_block ul li a {
  font-weight: 400;
  font-size: 17px;
  display: flex;
  align-items: center;
  color: var(--white);
}

.menu_toggle_btn {
  display: none;
}

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-buttons button.arrow-button {
  padding: 6px 15px;
  font-family: var(--font-Inter);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.navbar-buttons button.arrow-button img {
  margin-left: 10px;
}

.navbar-buttons button.arrow-button.blue-border-btn {
  background-color: var(--secondary-color);
  border: 1px solid transparent;
}

.navbar-buttons button.white-border-btn {
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}
.in_header_block .menu_block .navbar-buttons {
  display: none;
}

/********************  Mobile Menu CSS Start *********************/
.menu_toggle_btn span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.open_menu .menu_toggle_btn span {
  background-color: var(--black);
}
/********************  Mobile Menu CSS Close *********************/

/*********************  Get in Touch CSS Start  *********************/
.get-in-touch {
  padding: 26px 0;
}
.get-in-touch .get-in-touch-row {
  display: flex;
  margin: 0 -15px;
}
.get-in-touch-row .get-in-touch-1 {
  width: 50%;
  padding: 0 15px;
  justify-content: flex-start;
  align-items: flex-start;
}
.get-in-touch-1 h2 {
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-Jakarta);
  color: var(--black);
}
.get-in-touch-1 p {
  color: #3b3b3b;
  font-size: 16px;
  font-weight: 400;
  margin: 6px 0 30px 0;
  max-width: 475px;
}
.get-in-touch-1 p span {
  color: #202020;
  font-weight: 600;
}
.get-in-touch-1 .trusted-by {
  margin-top: 60px;
}
.get-in-touch-1 .trusted-by span {
  color: #002448;
  font-size: 17px;
  font-weight: 400;
}
.get-in-touch-1 .trusted-by ul {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.get-in-touch-1 .trusted-by ul li {
  width: 33.33%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.get-in-touch-row .get-in-touch-2 {
  width: 50%;
  padding: 0 15px;
}
.get-in-touch-2 .schedule-demo-box {
  border: 0.81px solid #d7d5d54d;
  box-shadow: 1.62px 1.62px 3.24px 0px #6eb8bb26;
  background-color: #f5f5f54f;
  padding: 13px 25px;
  border-radius: 10px;
}
.schedule-demo-box h2 {
  color: #1a1e21;
  font-size: 21px;
  font-weight: 600;
  font-family: var(--font-Jakarta);
  margin-bottom: 30px;
}
.schedule-demo-box form .form-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}
.schedule-demo-box form .form-col-6 {
  width: 50%;
  padding: 15px;
}
.schedule-demo-box form .form-col-12 {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
}
.schedule-demo-box form label {
  font-size: 13px;
  font-weight: 400;
  color: #1b1d1b;
  font-family: var(--font-Inter);
}
.schedule-demo-box form label sup {
  color: #b12513;
  font-size: 13px;
}
.schedule-demo-box form input,
.schedule-demo-box form textarea {
  border: 0.81px solid #0000001a;
  padding: 4px 9px;
  border-radius: 6px;
}
.schedule-demo-box form input::placeholder,
.schedule-demo-box form textarea::placeholder {
  font-size: 12px;
  font-weight: 400;
  color: #1b1d1b57;
  font-family: var(--font-Inter);
}
.schedule-demo-box form textarea {
  resize: none;
}
.common-button {
  display: block;
  background-color: var(--primary-color);
  border-radius: 30px;
  padding: 10px 44px;
  font-family: var(--font-Inter);
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  &:disabled {
    background-color: var(--secondary-color);
    color: var(--primary-color);
  }
}
/*********************  Get in Touch CSS End  *********************/

/*********************  Footer CSS Start  *********************/
.footer {
  background-color: var(--primary-color);
  padding: 70px 0;
}
.footer-top-contents {
  display: flex;
  flex-wrap: wrap;
}
.footer-section-1 {
  width: 50%;
}
.footer-section-2 {
  width: 25%;
}
.footer-section-1 img {
  height: 54px;
}
.footer-section-2 > span,
.footer-section-3 > span {
  color: var(--white);
  font-family: var(--font-Jakarta);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
  display: block;
}
.footer-ul-forment a {
  color: rgba(215, 213, 213, 1);
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 2;
}
.footer-ul-forment > li {
  margin-bottom: 5px;
  width: max-content;
  cursor: pointer;
}
.footer-ul-forment > li a > img {
  margin-right: 10px;
}
.footer-bottom-contents {
  margin-top: 40px;
}
.footer-bottom-contents > p {
  font-family: var(--font-Inter);
  color: rgba(215, 213, 213, 1);
  width: max-content;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.footer-bottom-contents > span {
  display: block;
  font-family: var(--font-Inter);
  max-width: 900px;
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(108, 117, 125, 1);
}
/*********************  Footer CSS End  *********************/

/*********************  hero section CSS Start  *********************/
.hero-section {
  /* background-color: var(--primary-color); */
  background: radial-gradient(
    51.34% 31.37% at 47.5% 65.23%,
    #024990 0%,
    #061e36 100%
  );
  padding: 90px 0;
}
.hero-section-row {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  flex-direction: column;
}
.ai-button img {
  margin-right: 8px;
}
.ai-button {
  background: linear-gradient(
    93.4deg,
    #03e8af -2.59%,
    #0166cc 31.56%,
    #0166cc 55.47%,
    #7151f5 89.19%
  );
  border: 0;
  border-radius: 50px;
  padding: 7px 20px;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  font-family: var(--font-Jakarta);
}
.hero-text-block {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-text-block h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-Jakarta);
}
.hero-text-block h1 img {
  width: 106px;
  margin-right: 10px;
}
.hero-text-block p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-Jakarta);
  max-width: 720px;
  text-align: center;
  line-height: 1.3;
  margin: 30px 0 20px 0;
}
.hero-text-block button {
  padding: 6px 15px;
  font-family: var(--font-Inter);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  border: 1px solid #8ee6ea;
  background-color: transparent;
  color: #8ee6ea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text-block button img {
  margin-left: 8px;
}

/*********************  hero section CSS Start  *********************/

/*********************  Company logo Slider CSS Start  *********************/
.company-logo-slider {
  padding: 100px 0;
}
.company-logo-slider .slick-track {
  display: flex;
  align-items: center;
  gap: 40px;
}
.company-logo-slider .slick-track img {
  max-width: 140px;
  max-height: 32px;
  min-height: 28px;
  height: auto;
}
.company-logo-slider .slick-track img#AboveCloud9 {
  max-width: 170px !important;
  min-height: 30px !important;
}
.interview-process {
  border: 4px solid #6eb8bb26;
  border-radius: 24px;
  margin-top: 350px;
}
.interview-process-box {
  background-color: #8ee6ea3b;
  padding: 40px 50px 70px 50px;
  margin: 5px;
  border-radius: 24px;
}
.interview-process-box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 90px;
  gap: 30px;
}
.interview-process-box ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.interview-process-box ul li span {
  width: 65px;
  height: 65px;
  border-radius: 100%;
  background-color: #eaedf4;
  border: 0.94px solid #015ab41c;
  box-shadow: 1.88px 1.88px 7.7px 0px #015ab461;
  display: flex;
  justify-content: center;
  align-items: center;
}
.interview-process-box ul li p {
  margin-top: 36px;
  color: #eaedf4;
  font-family: var(--font-Jakarta);
  max-width: 180px;
  text-align: center;
}
.interview-process .interview-process-image-block img {
  margin-top: -350px;
}
.interview-process-image-block .ai-copilot-row {
  display: flex;
  justify-content: space-evenly;
  margin: 5px 0 0 25px;
}
.interview-process-image-block {
  position: relative;
}
.interview-process-image-block .ai-copilot-row {
  width: 100%;
  position: absolute;
  left: -20px;
}
/*********************  Company logo Slider CSS End  *********************/

/*********************  FlairX-Meets CSS Start  *********************/
.flairx-meets {
  background-color: #fafbfd;
}
.section-space {
  padding: 100px 0;
}
.section-title {
  margin-bottom: 40px;
}
.section-title span {
  font-family: var(--font-Jakarta);
  font-weight: 500;
  font-size: 22px;
  line-height: 2;
  color: #0075ea;
}
.section-title p {
  font-family: var(--font-Jakarta);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.3;
}
.help-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  justify-content: space-between;
}
.help-box {
  width: 45%;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0px 3.29px 3.29px 0px #00000040;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.help-box img {
  border-radius: 10px 10px 0 0;
}
.help-box-content {
  padding: 20px 40px;
}
.help-box-content .title-texts {
  font-family: var(--font-Jakarta);
  font-weight: 600;
  font-size: 22px;
  line-height: 2;
  color: #0075ea;
  text-align: center;
  display: flex;
  gap: 15px;
}
.description-text {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.description-text p {
  font-family: var(--font-Poppins);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6;
  color: var(--black);
}
.description-text span {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #000000b2;
  display: inline-block;
}
/*********************  FlairX-Meets CSS End  *********************/
/********************  About Us Css Start *********************/
/* Container that holds all reviews horizontally */
.review-container {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 30px;
  box-sizing: border-box; /* add this */
  width: calc(3 * ((100% - 60px) / 3) + 2 * 30px);
  max-width: 100%;
  /* min-height: 100px; */
}

/* .review-container,
.review-box {
  visibility: visible;
  opacity: 1;
} */

/* Viewport that clips the review-container overflow */
.slider-viewport {
  overflow: hidden;
  width: 100%;
  padding: 0; /* important */
  margin: 0; /* important */
  box-sizing: border-box;
}

/* Wrapper with arrows */
.testimonial-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

/* Individual review box styling */
.review-box {
  /* flex: 0 0 calc((100% - 60px) / 3); 
  min-width: calc((100% - 60px) / 3);
  box-sizing: border-box; */
  padding: 24px 34px;
  border-radius: 24px;
  border: 1px solid rgba(110, 184, 187, 0.42);
  box-shadow: 2px 4px 6px rgba(165, 213, 218, 0.46);
  display: flex;
  flex-direction: column;
  /* align-items: flex-start;
  gap: 30px;
  scroll-snap-align: start; */

  height: 100%;
  width: 100%;
  justify-content: space-between;
}

.review-box .text-contents {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  height: 100%;
  padding-top: 10px;
}

/* .review-box img[src$="Logo.png"],
.review-box img[src$="Logos.svg"] {
  width: 150px;
  height: auto;
} */

.review-box img {
  padding-bottom: 8px;
  width: 170px;
  height: auto;
}

.review-box img[src$="Oleria-Logo.png"] {
  width: 150px;
  height: auto;
}

.review-box img[src$="Client-Profile-3.png"] {
  width: 200px;
  height: auto;
}

.review-box img[src$="FALCONX-Logos.svg"] {
  width: 150px;
  height: auto;
}

.review-box img[src$="ArtOfLiving-logo.png"] {
  width: 180px;
  height: auto;
}

/* Arrow styling */
.arrow {
  font-size: 31px;
  color: black;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}

/* Text styling inside testimonial */
.review-box .text-contents > p {
  font-family: var(--font-Inter);
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
  color: #002448;
}

/* Client Info */
.client-details {
  display: flex;
  align-items: center;
  gap: 15px;

  /* margin-top: 20px; */
}

.client-details img {
  width: 60px;
  height: 60px;

  border-radius: 50%;
  object-fit: cover;
}

.client-name-and-details p {
  font-family: var(--font-Jakarta);
  font-weight: 500;
  font-size: 22px;
  color: #0a0a0a;
  margin: 0;
  line-height: 1;
}

.client-name-and-details span {
  font-family: var(--font-Jakarta);
  font-weight: 300;
  font-size: 16px; /* slightly smaller for better mobile scaling */
  color: #6b6b6b;
  line-height: 1.2; /* give it room to breathe */
  display: block; /* ensure it drops below the name cleanly */
  margin-top: 4px; /* optional, to add subtle space from name */
}

.swiper-slide {
  display: flex;
}

.swiper-button-next,
.swiper-button-prev {
  color: #002448;
  font-size: 30px;
  /* width: 30px;
  height: 30px; */
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 39px;
}

.testimonial-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* space between buttons and slider */
  margin-top: 40px;
  position: relative;
}

.testimonial-carousel-wrapper .swiper-button-prev,
.testimonial-carousel-wrapper .swiper-button-next {
  position: relative; /* override Swiper's absolute */
  top: auto;
  transform: none;
  font-size: 15px;
  cursor: pointer;
  color: #002448;
}

.swiper-pagination-bullet {
  background: #00a3c4;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* RESPONSIVE DESIGN */
/* @media (max-width: 1024px) {
  .review-box {
    flex: 0 0 calc((100% - 30px) / 2);
    min-width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .review-box {
    flex: 0 0 100%;
    min-width: 100%;
  }
} */

/********************  About Us Css End *********************/
/********************  Request Demo Css Start *********************/
.request-demo {
  background: radial-gradient(
    52.88% 86.43% at 41.14% 44.37%,
    #024990 0%,
    #061e36 61.5% 
  );

}
.request-contents {
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  border-radius: 22px 22px 0 0;
  flex-wrap: wrap;
}
.demo-btn {
  background-color: #6eb8bb;
  padding: 12px 24px;
  border-radius: 30px;
  color: #000000;
  width: max-content;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.request-section {
  width: 40%;
}
.request-section h3 {
  font-family: var(--font-Jakarta);
  font-weight: 600;
  font-size: 28px;
  line-height: 1;
  color: #002448;
  margin-bottom: 8px;
}
.request-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.request-section span {
  display: inline-block;
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #000000ad;
  max-width: 366px;
}
.request-section > img {
  padding: 10px 60px 30px;
}
.request-section.responsive {
  margin: 70px 10px 20px;
}
/********************  Request Demo Css End *********************/
/********************  Hiring Steps Css Start *********************/

/********************  Hiring Steps Css End *********************/

/* font-family: "Inter", sans-serif; */
/* font-family: "Plus Jakarta Sans", sans-serif; */
/* font-family: "Poppins", sans-serif; */

.hiring-steps,
.hiring-steps-mobile {
  background: radial-gradient(
    60.08% 108.35% at 64.34% 31.62%,
    #043669 0%,
    #061e37 100%
  );
}
.hiring-steps .section-title span,
.mobile-steper span {
  color: #537ff1;
}
.hiring-steps .section-title p,
.mobile-steper p {
  color: var(--white);
}
.hiring-steps-container {
  display: flex;
  /* flex-wrap: wrap; */
}
.step-content-test {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step-description {
  display: none;
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--white);
  max-width: 380px;
}
.tab-section-container > li {
  margin-bottom: 20px;
}
.teb.active .normal-img {
  display: none;
}
.text-and-description span > img {
  margin-right: 10px;
}
.teb.active .text-and-description span {
  font-family: var(--font-Inter);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #6eb8bb;
  align-items: center;
  display: flex;
}
.teb.active .text-and-description .step-description {
  display: block;
}
.teb.active {
  border-left: 4.5px solid #80c9cc;
}
.teb {
  border-left: 4.5px solid #ece9df;
  padding-left: 20px;
  transition: all 0.5s ease-in-out;
  opacity: 0.6;
  transform: scale(0.95);
}
.teb .text-and-description span {
  font-family: var(--font-Inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 2.5;
  color: #d7d5d5d6;
}
.step-content,
.step-img {
  width: 50%;
}
.teb.active .active-img {
  display: block;
}
.teb .active-img {
  display: none;
}
.teb.active {
  opacity: 1;
  transform: scale(1);
}
.hiring-steps {
  position: relative;
  padding: 100px 0;
  height: 100vh;
}
.step-content {
  position: relative;
}
.step-content-test {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
}

/* .hiring-steps-container {
  position: relative;
} */

.sticky-steper {
  position: fixed;
  top: 11%;
  left: 17%;
  width: 50%;
}

.unsticky-steper {
  position: absolute;
  top: 0;
  left: 0;
}
.step-content-test {
  transition: transform 0.4s ease-in-out;
}

/* _________________ */

.section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  flex-direction: column;
}

.spacer {
  width: 100%;
  height: 100vh;
  /* background-color: coral; */
}

.container-box {
  width: 100%;
  max-width: 1280px;
  height: 100vh;
  display: flex;
}

.left,
.right {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: fuchsia; */
}

.left {
  /* background-color: green; */
  justify-content: space-between;
}

.images {
  height: 100%;
  width: 100%;
  max-height: 530px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.images img:first-child {
  opacity: 1;
}
/* Mobile css  */
.hiring-steps-mobile {
  display: none;
}
.hiring-steps .section-title {
  width: 100%;
}
.gsap-marker-end,
.gsap-marker-end,
.gsap-marker-start,
.gsap-marker-scroller-end,
.gsap-marker-scroller-start {
  display: none;
  visibility: hidden;
}

.demo-options {
  display: flex;
  gap: 100px;
  margin-top: 10px;
}

.demo-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.demo-options input[type="radio"] {
  accent-color: #061e36; /* optional: sets the color of the radio bullet */
  cursor: pointer;
}