@import url("https://fonts.googleapis.com/css2?family=Gloria+Hallelujah&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");


:root {
  --body-bg: #121212;
  --header-scroll-bg: rgba(0, 0, 0, 1);
  --login-btn-brd: #dddddd99;
  --white-clr: 242, 242, 242;
  --black-txt: #111111;
  --ai-txt-bg: #222222a6;
  --ai-txt-clr: #eeeeee;
  --nunito-font: "Nunito Sans", sans-serif;
  --gloria-font: "Gloria Hallelujah", cursive;
  --ai-para-clr: #f2f2f2cc;
  --yellow-clr: #fdca40;
  --mostppl-gray: #f2f2f299;
  --int-pointerbrd: #68686873;
  --pointerheading-clr: #f2f2f2;
  --footer-bg: #040404;
  --footer-para: #a3a3a3;
  --swiper-paraclr: #f5f5f5;
  --box-paraclr: #dadee7;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}
h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  color: rgba(var(--white-clr),1);
}
h6 {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  color: rgba(var(--white-clr), 1);
}
p{
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: rgba(var(--white-clr),.8);
  margin-block-start: 10px;
  margin-block-end: 40px;

  }
.fs-48{font-size: 48px;}
.fs-36{font-size: 36px;}
.fs-32{font-size: 32px;}
.fs-24{font-size: 24px;}
.fs-18{font-size: 18px;}
.fs-16{font-size: 16px;}
ul {
  list-style: none;
}

/* img{
    width: 100%;
} */


.mb10 {
  margin-block-end: 10px;
}
.mb20 {
  margin-block-end: 20px;
}
.mb30{
  margin-block-end: 30px;
}
.mb40 {
  margin-block-end: 40px;
}
.flex__items {
  display: flex;
  align-items: center;
}

body {
  background-color: var(--body-bg);
  font-family: var(--nunito-font);
}
.hide {
  display: none !important;
}
.ai__powered {
  background-image: url("https://cdn.punjabstartup.com/1767350231898.png");
  background-size: contain;
  background-repeat: no-repeat;
padding-block-end: 0px !important;
}
main section {
  padding-block: 80px;
}
.logo {
  width: 160px;
}

.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  margin-inline: auto;
}

header {
  position: fixed;
  inset-block-start: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 1300px;
  padding-block-start: 10px;
}

.header__container {
  /* max-width: 1200px;
    margin-inline: auto;
    justify-content: space-between;
    gap: 10px;
    transition: width 0.6s ease; */
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 10px 20px;
  margin-inline: auto;
  transition: all 0.5s;
  transition: width 0.6s ease;
  width: 100%;
}

.menu > ul > li > a {
  font-weight: 400;
  font-size: 15px;
  line-height: 29px;
  color: rgba(var(--white-clr),1);
  transition: color 0.5s ease-in-out;
}

.menu > ul > li > a:hover {
  color: var(--yellow-clr);
}

.menu > ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__right {
  gap: 20px;
}

header.scrolled__state .header__container {
  width: 75%;
  background: var(--header-scroll-bg);
  border-color: #3b3b3b;
  transition: width 0.6s ease;
  box-shadow: 0 0 13px #524f4f52;
}

header.scrolled__state .header__btn {
  padding: 8px 22px;
}
.header__btn {
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
}

.login__btn {
  color: rgba(var(--white-clr),1);
  border: 1px solid var(--login-btn-brd);
  background-color: transparent;
}

.login__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  background-color: rgba(255, 255, 255, 0.04);
}

.login__btn:active {
  transform: scale(0.96);
}

.signup__btn {
  position: relative;
  background: linear-gradient(180deg, #fce9b6 -56.67%, #f0bc39 100%);
  border: 1px solid;
  border-image: radial-gradient(
      12.7% 44.44% at 21.76% 0%,
      rgba(205, 239, 254, 0.6) 0%,
      rgba(205, 239, 254, 0) 100%
    )
    1;

  box-shadow: 0 4px 16px rgba(0, 4, 28, 0.25), 0 0 0 3px rgba(48, 64, 141, 0.2);
}

.signup__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 4, 28, 0.35), 0 0 0 5px rgba(48, 64, 141, 0.35);
}

.signup__btn:active {
  transform: scale(0.96);
}

.support__section {
  background: linear-gradient(
    101.28deg,
    rgba(18, 18, 18, 0.02) 0%,
    rgba(253, 202, 64, 0.03) 50%,
    rgba(18, 18, 18, 0.02) 100%
  );
}
.text__center {
  text-align: center;
}

.ai__main__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 797px;
  margin-inline: auto;
  padding-block-start: 150px;
}

.ai__txt {
  display: inline-block;
  max-width: fit-content;
  margin-inline: auto;
  padding: 8px 16px;
  border-radius: 22px;
  background-color: var(--ai-txt-bg);
  color: var(--ai-txt-clr);
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}

.experience__btn {
  position: relative;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  margin-inline: auto;
  gap: 10px;
  max-width: fit-content;
  background: linear-gradient(180deg, #fce9b6 -56.67%, #f0bc39 100%);
  border-radius: 100px;
  border: 1px solid;

  border-image: radial-gradient(
      12.7% 44.44% at 21.76% 0%,
      rgba(205, 239, 254, 0.6) 0%,
      rgba(205, 239, 254, 0) 100%
    )
    1;

  box-shadow: 0 7px 33px rgba(0, 4, 28, 0.2), 0 0 0 4px rgba(48, 64, 141, 0.3);

  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  overflow: hidden;

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.experience__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 4, 28, 0.35),
    0 0 0 6px rgba(48, 64, 141, 0.45);
}

.experience__btn:active {
  transform: translateY(0) scale(0.97);
}

.experience__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 100%
  );
  transition: left 0.6s ease;
}

.experience__btn:hover::after {
  left: 120%;
}

.experience__btn svg {
  transition: transform 0.25s ease;
}

.experience__btn:hover svg {
  transform: translateX(4px);
}

.data__img {
  position: relative;
}

.img__container {
  gap: 24px;
  justify-content: center;
}

.performance__toptxt {
  position: absolute;
  top: -43px;
  right: 164px;
  gap: 13px;
}

.down__arrow {
  position: relative;
  top: 9px;
}

.performance__oviewpara {
  font-family: var(--gloria-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: rgba(var(--white-clr),1);
}

.vc__img > img {
  width: 100%;
}

.data__img > img {
  width: 100%;
}

.vc__img {
  position: relative;
}

.vc__abs {
  width: 141px !important;
  position: absolute;
  bottom: 68px;
  left: 15px;
}

.yellow__txt {
  color: var(--yellow-clr);
}

.mostppl__para {
  font-weight: 700;
  font-size: 32px;
  line-height: 170%;
  color: rgba(var(--white-clr),1);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.most__gray {
  color: var(--mostppl-gray);
}

.icons__box {
width: 38px;
height: 38px;
border-radius: 11px;
display: inline-flex;
align-items: center;
justify-content: center;
  box-shadow: 0px 6.02px 28.4px 0px #00041c33;
  box-shadow: 0px 0.86px 0.86px 0px #00041c80;
  backdrop-filter: blur(27.53825569152832px);
  border: 0.86px solid;
  border-image-source: radial-gradient(
    12.7% 44.44% at 21.76% 0%,
    rgba(205, 239, 254, 0.6) 0%,
    rgba(205, 239, 254, 0) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(253, 202, 64, 0.36) -56.67%,
    rgba(253, 202, 64, 0.8) 100%
  );
}

.fallen__card__para {
  line-height: 130%;
  text-align: left;
  margin: 0;
  font-weight: 400;
  color: rgba(var(--white-clr),1);
}

.blue__bg {
  background: linear-gradient(180deg, #143049 0%, rgba(18, 18, 18, 0.12) 100%);
}

.pink__bg {
  background: linear-gradient(180deg, #431a32 0%, rgba(18, 18, 18, 0.12) 100%);
}

.brown__bg {
  background: linear-gradient(180deg, #281906 0%, rgba(18, 18, 18, 0.12) 100%);
}

.blackish__bg {
  background: linear-gradient(180deg, #1d1b1f 0%, rgba(18, 18, 18, 0.12) 100%);
}

.interview__section {
  background: linear-gradient(
    101.28deg,
    rgba(18, 18, 18, 0.02) 0%,
    rgba(253, 202, 64, 0.03) 50%,
    rgba(18, 18, 18, 0.02) 100%
  );
  position: relative;
}

.interview__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.interview__imgWrap {
  position: relative;
  max-width: 1162px;
  width: 100%;
  padding: 0 165px;
}

.interview__Img {
  max-width: 832px;
  width: 100%;
}

.absImg1 {
  position: absolute;
  top: 0;
  right: 40px;
  max-width: 142px;
  width: 100%;
  height: 50px;
}

.absImg2 {
  position: absolute;
  max-width: 182px;
  height: 66px;
  bottom: 115px;
  left: 0px;
}

.interview__pointers {
  display: flex;
  border-top: 1px solid var(--int-pointerbrd);
  height: 100%;
  margin-block-start: 40px;
}

.pointer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
}

.pointer__heading {
  font-size: 18px;
  font-weight: 600;
  line-height: 120%;
  color: rgba(var(--white-clr),1);
}

.pointer__para {
  font-size: 15px;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  color: rgba(var(--white-clr), .8);
}

.line {
  height: auto;
  width: 2px;
  background: linear-gradient(to bottom, #68686873 10%, transparent);
  margin: 0 48px;
}

.prepSection {
  background: var(--body-bg);
  position: relative;
  padding: 80px 0;
}

.prepContent {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.yellow__text {
  color: var(--yellow-clr);
}

.prepText {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 900px;
  margin-inline: auto;
}
.prepBoxes {
  display: flex;
  gap: 30px;
}

.box {
  max-width: 100%;
  width: 100%;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-width: 1px 1px 0 1px;
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-image-slice: 1;
}

.greenBox {
  background: linear-gradient(180deg, #182522 0%, rgba(18, 18, 18, 0.12) 100%);
}

.pinkBox {
  background: linear-gradient(180deg, #261a25 0%, #121212 100%);
}

.blueBox {
  background: linear-gradient(180deg, #19242d 0%, #121212 100%);
}

.boxImg {
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
}

.boxPara {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  margin-block-end: 0;
  color: rgba(var(--white-clr), .8);
}

.corner__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border-block-start: 1px solid var(--yellow-clr);
  border-inline-start: 1px solid var(--yellow-clr);
}

.corner__container::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 15px;
  height: 15px;
  border-block-end: 1px solid var(--yellow-clr);
  border-inline-end: 1px solid var(--yellow-clr);
}
section.scroll {
    padding-block-start: 0;
}
.scrollcontent__container {
  max-width: 880px;
  margin-inline: auto;
  margin-block-end: 20px;
}
.timeline__container {
  position: relative;
}

.timeline__center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  width: 2px;
  height: calc(100% - 100px);
  z-index: 1;
  background-color: #333;
}

.timeline__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    89.99deg,
    rgba(253, 202, 64, 0.75) -4.76%,
    rgba(253, 202, 64, 0.45) 112.95%
  );
  z-index: 2;
  height: 0;
  transition: height 0.1s ease-out;
}

.timeline__items {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 43px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  min-height: 43px;
  align-items: center;
}

.side__contents {
  padding: 14px 15px;
  border-radius: 12px;
  color:rgba(var(--white-clr),1);
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
}

.left__content {
  background: linear-gradient(
    90.14deg,
    rgba(17, 17, 17, 0) -86.38%,
    rgba(255, 255, 255, 0.06) 99.9%
  );
}

.right__content {
  background: linear-gradient(
    305.72deg,
    rgba(17, 17, 17, 0) -24.01%,
    rgba(253, 202, 64, 0.22) 156.97%
  );
}

.timeline__circle {
  width: 40px;
  height: 40px;
  border: 2px solid var(--yellow-clr);
  background-color: var(--body-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 10;
  flex-shrink: 0;
}

.right__arrowclr {
  color: var(--yellow-clr);
}

.fleximg__container {
  display: flex;
  gap: 30px;
}

.fleximg__container img {
  width: 100%;
  min-width: 0;
}

.i1 {
  max-width: 756px;
  flex: 756 1 0;
}

.i2 {
  max-width: 414px;
  flex: 414 1 0;
}

.practice__txt__container {
  background: linear-gradient(180deg, #181818 0%, #121212 100%);
  position: relative;
  border-radius: 12px;
  padding: 30px;
}

.practice__txt__container::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.practice__txt__container::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 1px;
  background: transparent;
}

.progressimg {
  max-width: 350px;
}

.overallimg {
  max-width: 696px;
}
.practice__left,.build__right{
    flex: 1;
}
.practice__right,.build__left{
    flex: 0 0 410px;
}
.practice__txt {
  display: flex;
  flex-direction: column;
}
.dvlp__txt {
  display: flex;
  flex-direction: column;
}

.micimg {
  max-width: 609px;
}

.greatimg {
  max-width: 354px;
}

/* fail card */

.cards-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cards-container {
  position: relative;
  height: 350px;
}
.cards-section h2 {
    text-align: center;
    max-width: 950px;
    margin: 0 auto 100px;
}
.fallen__card {
  border-width: 1px 1px 0px 1px;
  border-style: solid;
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  position: absolute;
  transform: translateY(-100vh) rotate(0deg);
  animation: fallDown 1.8s ease-out forwards;
  animation-play-state: paused;
}
.fallen__card:nth-child(1) {
    animation-delay: 0.7s;
    left: 110px;
    bottom: 80px;
    --rotation: -30deg;
    max-width: 340px;
}

.fallen__card:nth-child(2) {
    animation-delay: 1.1s;
    inset-inline: 0;
    bottom: 0;
    --rotation: 0deg;
    max-width: 320px;
    margin: auto;
    right: 140px;
}

.fallen__card:nth-child(3) {
animation-delay: 1.4s;
    top: 10px;
    --rotation: 6deg;
    inset-inline: 0;
    margin: 0 auto;
    max-width: 300px;
}

.fallen__card:nth-child(4) {
animation-delay: 1.8s;
    inset-inline: 0;
    top: 170px;
    --rotation: 20deg;
    margin: auto;
    max-width: 350px;
    left: 250px;
}

.fallen__card:nth-child(5) {
animation-delay: 2.2s;
    right: 80px;
    top: 140px;
    --rotation: 34deg;
    max-width: 330px;
}

@keyframes fallDown {
  0% {
    opacity: 0;
    transform: translateY(-100vh) rotate(-15deg);
  }
  60% {
    opacity: 1;
    transform: translateY(20px) rotate(calc(var(--rotation) + 2deg));
  }
  80% {
    transform: translateY(-10px) rotate(calc(var(--rotation) - 1deg));
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(var(--rotation));
  }
}

/* Animation trigger class */
.cards-section.animate .fallen__card {
  animation-play-state: running;
}

/* fail card */

/* Onscroll move card*/

.scroll-section {
  height: 400vh;
  position: relative;
}

.content-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  margin-inline: auto;
}

.left-text,
.right-text {
  position: absolute;
  max-width: 300px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  padding: 15px;
  color: rgba(var(--white-clr),.8);
}

.left-text {
  left: 2%;
  top: 20%;
}

.right-text {
  right: 2%;
  bottom: 20%;
}


.center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

/* Onscroll move card*/
.choose__cards {
  display: flex;
  align-items: center;
  margin-block-start: 125px;
}

.common__card {
  border-radius: 12px;
  padding: 30px;
  border-width: 1px 1px 0px 1px;
  border-image-source: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  text-align: center;
    position: relative;
}

.card__number {
  border-radius: 16px;
  width: 45px;
  height: 45px;
  border: 1px solid;
  border-image-source: radial-gradient(
    12.7% 44.44% at 21.76% 0%,
    rgba(205, 239, 254, 0.6) 0%,
    rgba(205, 239, 254, 0) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-end: 15px;
  margin-inline: auto;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: rgba(var(--white-clr),1);
}

.common__heading {
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  color: rgba(var(--white-clr),1);
  margin-block-end: 12px;
}

.common__para {
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
}

.num__green {
  background: linear-gradient(
    180deg,
    rgba(70, 191, 163, 0.05) -56.67%,
    rgba(70, 191, 163, 0.2) 100%
  );
}

.num__purple {
  background: linear-gradient(
    180deg,
    rgba(186, 84, 174, 0.05) -56.67%,
    rgba(186, 84, 174, 0.2) 100%
  );
}

.num__blue {
  background: linear-gradient(
    180deg,
    rgba(76, 165, 244, 0.05) -56.67%,
    rgba(76, 165, 244, 0.2) 100%
  );
}

.personalised__report {
  background: linear-gradient(180deg, #19242d 0%, #121212 100%);
  transform: rotate(-5deg) !important;
}

.ai__interview {
  background: linear-gradient(180deg, #261a25 0%, #121212 100%);
  transform: rotate(8deg) !important;
  top: -59px;
}

.interview__mode {
  background: linear-gradient(180deg, #182522 0%, rgba(18, 18, 18, 0.12) 100%);
  transform:rotate(-3deg) !important;
}

.first__thread {
  position: absolute;
  top: 26px;
  left: -96px;
  transform: rotate(-10deg);
}

.second__thread {
  position: absolute;
  left: -43px;
  top: -30px;
}
section.begin {
    padding-block-start: 10px;
}
.begin__interview__container {
  padding-block-start: 60px;
  margin-inline: auto;
  background-image: url("https://dlvkyia8i4zmz.cloudfront.net/CPDlCG50Tg6K8EzejghN_Group_1321318171.png");
background-position: center top;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 20px;
}

.begin__txt {
  max-width: 661px;
  margin-block-end: 32px;
  margin-inline: auto;
}

.start__btn {
  padding: 18px 24px;
  background-color: var(--yellow-clr);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  color: var(--startbtn-clr);
  margin-block-end: 40px;
}

.start__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 4, 28, 0.35),
    0 0 0 6px rgba(48, 64, 141, 0.45);
}

.start__btn:active {
  transform: translateY(0) scale(0.97);
}

.start__btn svg {
  transition: transform 0.25s ease;
}

.start__btn:hover svg {
  transform: translateX(4px);
}

.product__managerimg {
  max-width: 100%;
  display: block;
  height: auto;
  margin-inline: auto;
}




.lp_display-video {
  background: url('https://cdn.punjabstartup.com/1765790104386.png') no-repeat 0 0/cover;
  position: relative;
  max-width: 950px;
  aspect-ratio: 970 / 484;
  margin-inline: auto;
}

.mac-screen {
  position: absolute;
  top: 6%;
  left: 13%;
  width: 75%;
  height: 85%;
  overflow: hidden;
  border-radius: 10px;
}

.mac-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-block: 40px;
}

.footer__section {
  background: var(--footer-bg);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.obj__fit {
  max-width: 100%;
  height: auto;
}

.col__heading {
  font-weight: 600;
  font-size: 18px;
  line-height: 26px;
  color: rgba(var(--white-clr),1);
  margin-block-end: 15px;
}

.footer__list > li {
  margin-block-end: 13px;
}

.footer__list > li > a {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: var(--footer-para);
}

.footer__txt {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 20px;
}

.why__interview {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.text-container {
  max-width: 900px;
  text-align: center;
}
.most__gray {
  color: rgb(128, 128, 128);
}

.word {
  display: inline-block;
  margin: 0 0.15em;
  color: rgba(242, 242, 242, 0.6);
  transition: color 0.3s ease;
}

.word.white {
  color: rgb(255, 255, 255);
}

.journey-section {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lg\:hide{
    display: none;
}

@media (max-width: 1140px) {

.fallen__card:nth-child(1) {
    left: 0px;
}
.fallen__card:nth-child(4) {
    left: 80px;
}
.fallen__card:nth-child(5) {
    right: 0px;
}

}



@media (max-width: 1024px) {
  header.scrolled__state .header__container {
    width: 95%;
  }

  .prepBoxes {
    gap: 20px;
  }

  .box {
    padding: 15px;
  }

  .absImg1 {
    max-width: 112px;
    width: 100%;
    right: 30px;
  }

  .absImg2 {
    max-width: 132px;
    width: 100%;
    left: 0px;
    bottom: 90px;
  }

  .interview__imgWrap {
    padding: 0 125px;
  }

  .line {
    margin: 0 25px;
  }
}
@media (max-width: 980px) {
  .performance__toptxt {
    top: -43px;
    right: 87px;
  }

  .down__arrow {
    top: 9px;
    width: 32px;
  }

  .vc__abs {
    width: 122px !important;
    bottom: 44px;
    left: 8px;
  }
}

@media (max-width: 767px) {
  div#lottie-journey { display: none; }
.journey-section img { margin-block-start: 50px;display: block; }
.fs-24 { font-size: 18px; } p { font-size: 16px; } h2 { font-size: 30px; }
.xs\:hide{ display: none; } .lg\:hide{ display: block; } .interview__imgWrap .lg\:hide { margin: auto; }
.journey-section { padding-block-end: 40px; }
.center-title { font-size: 24px; }
.left-text, .right-text { font-size: 0.9rem; max-width: 150px; }
.pointer {padding-inline: 15px;padding-block: 20px;gap: 0;}
.timeline__items { gap: 20px; }
.footer__txt { grid-template-columns: repeat(2, max-content); }
.start__btn { padding: 13px 16px; font-size: 13px; }
.common__para { font-size: 12px; }
.common__heading { font-size: 18px; }
.card__number { width: 40px; height: 40px; }
.common__card { padding: 20px;max-width: 450px;top: 0;}
.fleximg__container { flex-direction: column; }
.side__contents { padding: 12px 8px; font-size: 13px; }
.icons__box { width: 22px; height: 22px;border-radius: 5px; } .icons__box img { max-width: 15px; }
 .timeline__item { gap: 5px; } .timeline__circle { width: 30px; height: 30px; } .right__arrowclr { font-size: 14px; }
.prepHeading { font-size: 28px; }
.box { width: 100%; }
.absImg1,.absImg2 { display: none; }
.interview__imgWrap { padding: 0; }
.interview__pointers { border-block-start: none; flex-direction: column;
   border-inline-start: 1px solid var(--int-pointerbrd); }
  .line { height: 2px; width: 40%; background: linear-gradient(to right, #68686873 10%, transparent); margin: 0; }
.vc__abs { width: 99px !important; bottom: 42px; left: 10px; }
.performance__toptxt { right: 107px; }
.ai__heading { font-size: 30px; }
.ai__para { font-size: 15px; }
.experience__btn { font-size: 13px; gap: 8px; }
.experience__arrow { width: 16px; }
.img__container { flex-direction: column; gap: 43px; }
.vc__abs { width: 155px !important; bottom: 64px; left: 11px; }
.cards-container {height: auto; min-height: 320px; max-width: 450px; margin: 0 auto;}
 .card { width: 90%; max-width: 300px; position: relative !important; left: auto !important; right: auto !important; 
  top: auto !important; margin: 20px auto; display: block; }
.right-text { bottom: 25%; }
.left-text { top: 25%; }
main section { padding-block: 20px; }
.choose__cards { margin-block-start: 50px; flex-direction: column;gap: 20px; }
.first__thread { top: -50px; left: unset; right: 0px; max-width: 100px; transform: rotate(98deg); }
.second__thread { max-width: 86px; position: absolute; left: unset; top: -20px; right: 0; transform: rotate(-111deg); }
.logo { width: 120px; }
.prepBoxes { flex-wrap: wrap; flex-direction: column; }
.footer__container { flex-direction: column; }
.header__btn { padding: 8px 15px; font-size: 12px; }
header.scrolled__state .header__btn { font-size: 12px; padding: 8px 15px; }
.header__right { gap: 5px; } .header__container { padding: 10px 10px; }
.fallen__card:nth-child(1) {max-width: 220px; }
.fallen__card:nth-child(2) { right: 40px;max-width: 200px;}
.fallen__card:nth-child(4) { left: 0; margin: unset; transform: rotate(-28deg) !important; top: 70px;max-width: 220px; }
.fallen__card:nth-child(3) { top: 80px; --rotation: 28deg; inset-inline: unset; right: 0;max-width: 210px; }
.fallen__card:nth-child(5) { top: unset; --rotation: 34deg; bottom: 50px;max-width: 200px; }
.fallen__card__para { font-size: 12px; } .fallen__card { padding: 10px; gap: 10px;} .fallen__card img { max-width: 40px; }
.cards-section { padding: 0 10px; } .mostppl__para { font-size: 20px; }
.fleximg__container img { max-width: 450px; }















}


@media (max-width: 480px) {
  .cards-section h2 {
    margin: 0 auto 0px;
}
  .fallen__card:nth-child(5) {
        --rotation: 28deg;
}
.fallen__card:nth-child(3) {
      top: 110px;
    --rotation: 30deg;
}
.fallen__card:nth-child(4) {
    left: -20px;
    top: 90px;
}
  .footer__txt {
    grid-template-columns: 1fr;
  }

  .footer__container {
    flex-direction: column;
  }

  .ai__txt {
    font-size: 12px;
  }

  .ai__para {
    font-size: 13px;
  }

  .experience__btn {
    padding: 10px 18px;
    font-size: 13px;
    gap: 8px;
  }

  .experience__arrow {
    width: 16px;
  }

  .vc__abs {
    width: 131px !important;
    bottom: 60px;
    left: 12px;
  }
  .header__container img {
    max-width: 150px;
}
}
