*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --poppins: "Poppins", sans-serif;
  --montserrat: "Montserrat", sans-serif;

  /* --yellow: #ffca07; */
  --yellow: #ffbb00;
  /* --blue: #253a77; */
  --blue: #3d5dbd;

  --section-padding-lr: 7%;
}

html,
body {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  min-height: 100vh;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul li {
  font-family: var(--poppins);
}

a {
  text-decoration: none;
  color: #4b2fff;
  font-family: var(--poppins);
}

h1,
h2,
h3,
h3,
h4,
h5 {
  font-family: var(--montserrat);
}

p {
  font-family: var(--poppins);
  line-height: 1.5;
  color: #7b7b7b;
}

img {
  max-width: 100%;
  display: block;
}

button {
  outline: none;
  font-family: var(--poppins);
}

.text-yellow {
  color: var(--yellow);
}

.text-blue {
  color: var(--blue);
}

.button {
  padding: 8px 28px;
  border-radius: 99px;
  font-size: 16px;
  letter-spacing: 0.5px;
  background-color: #fff;
  display: inline-block;
}

.button--gradient {
  background-image: linear-gradient(
    to right,
    #4a4affa3 20%,
    #ffff4fcf 50%,
    #3434ffa3 100%
  );
  background-size: 200%;
  color: #ffffff;
  border: none;
  font-weight: 500;
  transition: all 1s;
}

.button--gradient:hover {
  background-position: center right;
}

.button--gradient--bordered {
  position: relative;
  min-width: 136px;
  max-width: 100%;
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(to right, #3434ff00, #ffff4f00);
  transition: all 0.5s;
}

.button--gradient--bordered:hover {
  background: linear-gradient(to right, #3434ffa3, #ffff4fcf);
  /* background-color: #01b000; */
  border-radius: 100px;
}

.button--gradient--bordered::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 300px;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #3434ffa3 0%, #ffff4fcf 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

.section__heading {
  font-size: 45px;
  font-weight: 600;
  text-align: center;
}

.section__paragraph {
  font-family: var(--poppins);
  font-size: 20px;
  text-align: center;
  width: 85%;
}

.section__head--start .section__heading,
.section__head--start .section__paragraph {
  text-align: start !important;
  width: auto;
}

/* ----- BEGINS: Header ----- */
.header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 65px;
  padding: 0 var(--section-padding-lr);
  /* box-shadow: inset 1px 41px 28px -4px rgb(0 0 0 / 61%); */
}

.header.sticky {
  background-color: #363246;
  box-shadow: none;
}

.header.init__color {
  background-color: #363246;
}

.header nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 50px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__menu__item a {
  color: #fff;
  font-size: 18px;
  position: relative;
}

.header__menu__item a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--yellow);
  transition: all 0.5s;
}

.header__menu__item a:hover::after {
  width: 100%;
  box-shadow: 0 0 9px 2px var(--yellow);
}

#hameBurgerMenu {
  width: 28px;
  height: 22px;
  cursor: pointer;
  display: none;
}

#hameBurgerMenu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 99px;
  transition: all 0.5s;
}

#hameBurgerMenu.toggle .middle__bar {
  width: 1px;
  opacity: 0;
}

#hameBurgerMenu.toggle .top__bar {
  transform: rotate(45deg) translateY(9px);
}

#hameBurgerMenu.toggle .bottom__bar {
  transform: rotate(-45deg) translateY(-9px);
}

/* ----- ENDS: Header ----- */

/* ----- BEGINS: Footer ----- */
footer {
  padding-top: 20px;
  width: 100%;
  background-color: #2e2e2e;
}

.footer__top {
  padding: 0 var(--section-padding-lr);
}

.footer__logo {
  width: 220px;
}

.footer__contact__info {
  margin-top: 20px;
  max-width: 380px;
}

.footer__contact__info li {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__contact__info i {
  color: #fff;
  background-color: #ffffff24;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
}

.footer__contact__info a {
  color: #8f8f8f;
}

.footer__social__heading {
  margin-top: 15px;
  font-size: 20px;
  color: #cfcfcf;
}

.footer__socials {
  /* margin-top: 12px; */
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__socials i {
  font-size: 20px;
  color: #fff;
  transition: all 0.5s;
}

.footer__socials li:hover i {
  color: var(--yellow);
}

.footer__links__heading {
  font-size: 20px;
  color: #d6d6d6;
}

.footer__menu__col {
  margin-top: 15px;
}

.footer__menu__item {
  margin-top: 10px;
}

.footer__menu__item a {
  font-size: 16px;
  color: #8f8f8f;
}

.footer__bottom {
  margin-top: 20px;
  padding: 16px var(--section-padding-lr);
  border-top: 1px solid #535353;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__bottom * {
  color: #8f8f8f;
  margin-bottom: 0;
}

/* ----- ENDS: Footer ----- */

/* ----- BEGINS: Hero ----- */
.heroSwiper {
  max-width: 100vw;
  overflow: hidden;
  position: relative;
}

.hero {
  width: 100%;
  height: 750px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: var(--section-padding-lr);
  transform: translatey(-50%);
  max-width: 850px;
}

.hero__content__heading {
  color: #fff;
  font-size: 45px;
  line-height: 64px;
  font-weight: 600;
}

.hero__content__subtext {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  line-height: 36px;
}

.hero__buttons {
  margin-top: 35px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-swiper-pagination {
  position: absolute;
  bottom: 0;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: #fff;
  transition: all 0.5s;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 99px;
}

/* ----- ENDS: Hero ----- */

/* ----- BEGINS: About us Section ----- */
.about {
  padding: 60px var(--section-padding-lr);
  padding-top: 60px;
  /* background-color: #ffffdf; */
}

.about-swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background-color: #fff;
  opacity: 0.5;
  transition: all 0.5s;
}

.about-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 99px;
  opacity: 1;
}

.about__images {
  position: relative;
}

.about__image__wrapper {
  border-radius: 22px;
  overflow: hidden;
  transform: scale(0.9);
}

.about__right__heading {
  font-size: 45px;
  font-weight: 600;
  background: -webkit-linear-gradient(45deg, var(--blue), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__right__paragraph {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.65;
  font-family: var(--poppins);
  color: #383838;
}

.about__buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.about__right__devider {
  margin-top: 60px;
  margin-bottom: 10px;
  width: 200px;
  display: inline-block;
}

.about__statistics {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about__statistics__tox {
  border-radius: 12px;
}

.about__statistics__tox h1 {
  font-weight: 600;
  color: #2e2e2e;
}

.about__statistics__tox p {
  font-size: 18px;
}

/* ----- ENDS: About us Section ----- */

/* ----- BEGINS: Features Section ----- */
.services {
  padding: 80px;
  padding: 40px var(--section-padding-lr);
  background: linear-gradient(35deg, #ffc90741, #3d5dbd3f);
}

.services__cards {
  margin-top: 80px;
}

.services__card {
  padding: 12px 12px;
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  /* border: 2px solid var(--yellow); */
  overflow: hidden;
}

.services__card__image {
  border-radius: 16px;
  overflow: hidden;
  height: 260px;
  position: relative;
  z-index: 9;
}

.services__card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services__card__text {
  padding: 12px 20px;
  padding-bottom: 5px;
  border-radius: 16px;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.services__card::before,
.services__card::after {
  content: "";
  display: block;
  height: 200%;
  width: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
  border-radius: 100%;
  transform: scale(0);
  transform-origin: 100% 100%;
}

.services__card::before {
  background-color: var(--yellow);
  z-index: 1;
  transition: all 0.8s;
}

.services__card::after {
  background-color: var(--blue);
  z-index: 2;
  transition: all 0.8s 0.3s;
}

.services__card:hover::before,
.services__card:hover::after {
  transform: scale(1);
}

.services__card:hover .services__card__icon {
  border: 2px solid #fff;
}

.services__card__icon img {
  filter: invert(1) brightness(200);
}

.services__card__heading {
  margin-top: 10px;
  font-size: 24px;
  line-height: 36px;
  font-weight: 500;
  transition: all 0.5s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.services__card:hover .services__card__heading {
  color: #fff;
}

.services__card__paragraph {
  font-size: 18px;
  color: #616161;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.5s;
}

.services__card:hover .services__card__paragraph {
  color: #fff;
}

.services__card__text a {
  border: none;
  outline: none;
  margin-top: 15px;
  background-color: transparent;
  color: var(--blue) !important;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}

.services__card__text a i {
  transform: rotate(-90deg);
  transition: all 0.5s;
}

.services__card:hover a {
  color: #fff !important;
  transition: all 0.5s;
}

.services__card:hover a i {
  color: #fff;
  transform: rotate(-90deg) translateY(10px);
}
/* ----- ENDS: Features Section ----- */

/* ----- BEGINGS: Clients Section ----- */
.clients {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-inline: var(--section-padding-lr);
  position: relative;
  background-attachment: fixed;
  background-position: 50% 50%;
  background-size: 140%;
  position: relative;
  overflow-x: hidden;
}

.clients::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* background-color: #ffffff; */
  /* filter: brightness(0.3); */
  backdrop-filter: brightness(0.4);
  z-index: 0;
}

.section__heading--clients {
  color: #fff;
}

.section__paragraph--clients {
  color: #fff;
}

.clients__carousel {
  margin-top: 50px;
}

.clientsSwiper {
  position: relative;
  padding-bottom: 40px;
}

.clientsSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear;
}

.client__logo {
  display: flex;
}

.client__logo img {
  width: 100%;
  transition: all 0.5s;
}

.client__logo:hover img {
  transform: scale(1.1) translateY(-10px);
}

.clients-swiper-pagination {
  bottom: 0 !important;
}

.clientsSwiper .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background-color: var(--blue);
  opacity: 0.5;
  transition: all 0.5s;
}

.clientsSwiper .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 99px;
  opacity: 1;
}
/* ----- ENDS: Clients Section ----- */

/* ------------------------ */
/* ----- Service Page ----- */
/* ------------------------ */
.services__hero {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 80% 0%;
  position: relative;
  overflow: hidden;
}

.services__hero__overlay {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #000 0%, #00000000 80%);
  position: relative;
}

.services__hero__content {
  max-width: 700px;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  left: var(--section-padding-lr);
}

.services__hero__content h1 {
  color: #fff;
  font-size: 45px;
  line-height: 64px;
  font-weight: 600;
}

.services__hero__content p {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 34px;
}

/* BEGINS: Services page - services grid section  */

.services__page {
  margin-top: 0;
}

.services__wide__card {
  margin-top: 200px;
  width: 100%;
  height: calc(100vh - 65px);
  position: sticky;
  top: 65px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.services__wide__card:nth-last-of-type(odd) {
  background-color: #ffffdf;
  padding-right: 0;
}

.services__wide__card:nth-last-of-type(even) {
  background-color: #3d5dbd;
}

.services__wide__card:nth-last-of-type(odd) > .row {
  flex-direction: row-reverse;
}

.services__wide__card.card1 {
  margin-top: 80px;
}

.services__wide__card .row {
  align-items: center;
}

.services__card__image__wrapper {
  overflow: hidden;
  height: calc(100vh - 65px);
  width: 100%;
}

.services__card__image__wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.services__card__content__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}

.services__wide__card:nth-last-of-type(odd) .services__card__content__wrapper {
  background: linear-gradient(to left, #ffffdf 45%, #00000000 55%);
}

.services__wide__card:nth-last-of-type(even) .services__card__content__wrapper {
  background: linear-gradient(to right, var(--blue) 30%, #00000000 55%);
}

.services__wide__card:nth-child(1) .services__card__content__wrapper {
  background: linear-gradient(to right, #000 30%, #00000000 55%);
}

.services__wide__card:nth-child(4) .services__card__content__wrapper {
  background: linear-gradient(to left, #04012c 40%, #00000000 55%);
  /* background: linear-gradient(to left, #35739f 40%, #00000000 55%); */
}

.services__wide__card:nth-child(5) .services__card__content__wrapper {
  background: linear-gradient(to right, #1b274a 30%, #00000000 55%);
}

.services__wide__card:nth-child(6) .services__card__content__wrapper {
  background: linear-gradient(to left, #2f458a 40%, #00000000 60%);
}

.services__wide__card:nth-child(7) .services__card__content__wrapper {
  background: linear-gradient(to right, #a9b1ba 40%, #00000000 60%);
}

.services__wide__card:nth-child(8) .services__card__content__wrapper {
  background: linear-gradient(to left, #202e59 40%, #00000000 60%);
}

.services__wide__card:nth-child(9) .services__card__content__wrapper {
  background: linear-gradient(to right, #0170bd 40%, #00000000 60%);
}

.services__wide__card:nth-child(10) .services__card__content__wrapper {
  background: linear-gradient(to left, #2a4082 40%, #00000000 60%);
}

.services__wide__card:nth-last-of-type(odd) .services__card__content {
  padding-right: var(--section-padding-lr);
  width: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.services__card__content {
  padding-left: var(--section-padding-lr);
  width: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.services__wide__card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.services__wide__card:nth-last-of-type(even) .services__card__content {
  padding-right: var(--section-padding-lr);
}

.services__card__content h2 {
  font-size: 42px;
  font-weight: 600;
}

.services__wide__card.text__light .services__card__content h2 {
  color: #ffffff;
}

.services__card__content p {
  font-size: 20px;
}

.services__wide__card.text__light .services__card__content p {
  color: #e4f0ff;
}

.services__card__subservices {
  margin-top: 20px;
}

.services__card__subservices li {
  margin-top: 12px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.services__wide__card.text__light .services__card__content li {
  color: #e4f0ff;
}

.services__card__subservices li i {
  background-color: #3d5dbd;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
}

.services__wide__card.text__light .services__card__content li i {
  color: #e4f0ff;
  background-color: #ffffff39;
}

/* ENDS: Services page - services grid section  */

/* ----- BEGINS: Services page - discuss project section ----- */
.discuss__project {
  margin-top: 80px;
  padding: 30px var(--section-padding-lr);
  background-color: #363246;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discuss__project .section__head--start {
  max-width: 800px;
}

.discuss__project__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* ----- ENDS: Services page - discuss project section ----- */

/* ------------------------- */
/* ----- About us page ----- */
/* ------------------------- */

/* ----- BEGINS: About us page - hero section ----- */
.about__hero {
  height: 600px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0%;
  position: relative;
  overflow: hidden;
}

.about__hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about__hero__svg {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.about__hero__svg svg {
  height: 100%;
  width: 100%;
}

.about__hero__content {
  max-width: 500px;
  position: absolute;
  top: 50%;
  transform: translateY(-40%);
  left: var(--section-padding-lr);
  z-index: 2;
}

.about__hero__content h1 {
  color: #fff;
  font-size: 45px;
  line-height: 64px;
  font-weight: 600;
}

.about__hero__content p {
  margin-top: 20px;
  color: #fff;
  font-size: 20px;
  line-height: 34px;
}
/* ----- ENDS: About us page - hero section ----- */

/* ----- BEGINS: About us page - who we are section ----- */
.who {
  padding: 80px var(--section-padding-lr);
}

.who p {
  font-size: 20px;
}

/* ----- ENDS: About us page - who we are section ----- */

/* START: About us page - Our Team Section  */
.team {
  padding: 80px var(--section-padding-lr);
  background-color: #ffffdf;
}

.teamSwiper {
  margin-top: 60px;
  padding-bottom: 60px;
}

.team__card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
}

.team__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__card__text__wrapper {
  width: 100%;
  padding-inline: 12px;
  position: absolute;
  bottom: 12px;
  left: 0;
  transform: translateY(calc(100% + 12px));
  transition: all 0.3s linear;
}

.team__card:hover .team__card__text__wrapper {
  bottom: 12px;
  transform: translateY(0);
}

.team__card__text {
  padding: 5px;
  width: 100%;
  background-color: #363246c9;
  border-radius: 12px;
}

.team__card__text h3 {
  margin-top: 12px;
  font-size: 22px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}

.team__card__text p {
  margin-top: 6px;
  font-size: 18px;
  color: #ffffffe6;
  text-align: center;
}

.team-swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  background-color: var(--blue);
  opacity: 0.5;
  transition: all 0.5s;
}

.team-swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 99px;
  opacity: 1;
}
/* ENDS: About us page - Our Team Section  */

/* BEGINS: About us page - Mission Section  */
.mission {
  padding: 80px 0;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  min-height: 620px;
}

.mission__boxes {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mission__box {
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(50% + 30px);
  position: absolute;
  top: 0;
}

.mission__box h2 {
  max-width: 520px;
  font-size: 30px;
  font-weight: 600;
}

.mission__box ul li {
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 0px;
}

.mission__box > * {
  text-align: center;
}

.mission__left__box {
  left: 0;
  padding: 40px 100px 40px var(--section-padding-lr);
  border-radius: 0 999px 999px 0;
  background-color: #0159bd81;
  z-index: 99;
}

.mission__right__box {
  right: 0;
  padding: 40px var(--section-padding-lr) 40px 100px;
  border-radius: 999px 0 0 999px;
  background-color: var(--blue);
}
/* ENDS: About us page - Mission Section  */

/* --------------------------- */
/* ----- Contact us page ----- */
/* --------------------------- */
.contact__hero {
  height: 550px;
}

.contact__form__section {
  padding: 80px var(--section-padding-lr);
  padding-bottom: 0;
  transform: translateY(-130px);
  display: grid;
  grid-template-columns: auto 400px;
  gap: 25px;
  position: relative;
  z-index: 99;
}

.contact__form {
  padding: 20px 32px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 12px -7px;
  position: relative;
}

.contact__form {
  padding: 20px 32px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 12px -7px;
  position: relative;
}

.contact__form__heading {
  padding: 13px 28px;
  background-color: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: 99px;
  position: absolute;
  top: -30px;
  left: 20px;
  font-weight: 500;
}

.contact__form form {
  position: relative;
  padding-bottom: 30px;
}

.contact__input__box {
  margin-top: 24px;
}

.contact__input__box input,
.contact__input__box select {
  width: 100%;
  padding: 8px 14px;
  outline: none;
  border: 1px solid #00000024;
  border-radius: 8px;
}

.contact__input__box select {
  color: #757575 !important;
}

.contact__input__box input:focus,
.contact__input__box select:focus {
  border-color: var(--blue);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact__form__interested h5 {
  font-size: 20px;
  font-weight: 500;
}

.checkbox-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.checkbox-wrapper {
  display: inline-flex;
  align-items: center;
  background-color: white;
  border: 1px solid #00000024;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  user-select: none;
}

.checkbox-wrapper:hover {
  border-color: #9ca3af;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Hide the native checkbox */
.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #00000024;
  border-radius: 4px;
  margin-right: 10px;
  transition: all 0.2s ease;
  flex-shrink: 0;
  background-color: white;
}

.checkbox-wrapper:hover .custom-checkbox {
  border-color: #9ca3af;
}

.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
  background-color: transparent;
  border-color: var(--blue);
}

.custom-checkbox::after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid var(--blue);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox::after {
  display: block;
}

.checkbox-label {
  font-family: var(--open-sans);
  font-size: 14px;
  color: #374151;
  font-weight: 500;
}

.contact__form__btn {
  position: absolute;
  bottom: -40px;
  background-color: #fff;
  left: -12px;
}

.contact__info {
  padding: 30px 20px;
  box-shadow: 0 0 12px -8px;
  border-radius: 20px;
  background-color: #fff;
}

.contact__info__heading {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
}

.contact__info__heading span {
  background: linear-gradient(to right, var(--blue) 0%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  font-weight: 600;
}

.contact__info p {
  line-height: 26px;
  color: #5e5e5e;
}

.contact__detail__heading {
  margin-top: 30px;
  padding: 8px;
  font-family: var(--poppins);
  font-size: 18px;
  background-color: #f5f5f5;
  color: #000 !important;
  border-radius: 8px;
}

.contact__detail__list {
  margin-top: 30px;
}

.contact__detail__list__item {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact__detail__list__item i {
  width: 36px;
  height: 32px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--blue), var(--yellow));
  color: #fff;
}

.contact__detail__list__item a {
  padding: 6px 12px;
  color: #373737;
  background-color: #f5f5f5;
  width: 100%;
  border-radius: 8px;
}

/* ---------------------- */
/* ----- Blogs Page ----- */
/* ---------------------- */

/* BEGINS: Blogs Page - Hero */
.blogs__hero {
  padding-top: 65px;
  height: 350px;
  background-position: 50% 65% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blogs__hero::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: brightness(0.4);
  z-index: 1;
}

.blog__hero__content {
  max-width: 850px;
  z-index: 2;
}

.blog__hero__heading {
  color: #fff;
  text-align: center;
  font-size: 45px;
  font-size: 50px;
}

.blog__hero__paragraph {
  color: #fff;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}
/* ENDS: Blogs Page - Hero */

/* BEGINS: Blogs Page - Subscribe section */
.subscribe__section {
  padding: 80px var(--section-padding-lr);
  background: linear-gradient(35deg, #ffc90741, #3d5dbd3f);
  text-align: center;
}

.subscribe__content {
  max-width: 800px;
  margin: 0 auto;
}

.subscribe__content h1 {
  font-size: 36px;
  font-weight: 600;
}

.subscribe__content p {
  margin-top: 12px;
  font-size: 18px;
  line-height: 28px;
}

.subscribe__form {
  margin-top: 30px;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
}

.subscribe__input {
  padding: 12px 16px;
  padding-left: 20px;
  border: 2px solid #00000024;
  outline: none;
  border-radius: 99px 0 0 99px;
}

.subscribe__form button {
  border-radius: 0 99px 99px 0;
  padding: 12px 24px;
}
/* ENDS: Blogs Page - Subscribe section */

/* BEGINS: Blogs Page - Blogs section */
.blogs__section {
  padding: 80px var(--section-padding-lr);
}

/* .blogs__categories {
  margin: 0 auto;
  padding: 7px 12px;
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  border: 2px solid #00000024;
  border-radius: 99px;
}

.blogs__categories .button {
  white-space: nowrap;
  padding: 8px 20px;
  font-size: 16px;
  border: none;
  outline: none;
  background-color: #eee;
}

.blogs__categories .button.active {
  background-color: var(--blue);
  color: #fff;
} */

.blog__list__grid {
  display: grid;
  grid-template-columns: 300px auto;
}
.blogs__category__sidebar {
  padding: 0 16px;
}

.blogs__category__menu {
  border-right: 1px solid #00000024;
  position: sticky;
  top: 80px;
}

.blogs__categories__item {
  margin-top: 5px;
  padding: 7px 14px;
  border-radius: 99px;
}

.blogs__categories__item a {
  color: #000a11;
}

.blogs__categories__item.active a {
  color: var(--blue);
}

.bog__card {
  margin: 20px 10px;
  border-radius: 16px;
  overflow: hidden;
  /* border: 1px solid #00000024; */
  transition: all 0.5s;
}

.bog__card:hover {
  box-shadow: 0 3px 20px 0px rgb(217 239 243);
  transform: translateY(-12px);
}

.blog__card__category {
  margin-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--blue);
  color: #fff;
  padding: 6px 12px;
  border-radius: 0 99px 99px 0;
  font-size: 14px;
}

.blog__card_image__wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.blog__card_image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__card__text {
  padding: 24px 20px;
}

.blog__card__title {
  font-size: 22px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog__card__title a {
  color: #000;
}

.blog__card__title:hover a {
  color: var(--blue);
}

.blog__card__description {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 0;
}

.blog__pagination__menu {
  display: flex;
  gap: 8px;
}

.blog__pagination__item {
  border: 1px solid #00000024;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
}

.blog__pagination__item.active {
  background-color: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
}

.blog__pagination__item.prev {
  width: auto;
  padding-inline: 15px;
}
/* ENDS: Blogs Page - Blogs section */

/* ---------------------------- */
/* ---- Blog Details Page ----- */
/* ---------------------------- */

.blog__detail__hero {
  /* padding-top: 80px; */
  padding: 0 var(--section-padding-lr);
  overflow-x: hidden;
  width: 100%;
  /* background-color: #363246; */
}
.blog__details__content {
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.blog__detail__hero__category {
  font-size: 22px;
  padding: 7px 14px;
  border-radius: 99px;
  background-color: #0000000e;
  color: #333;
  display: inline;
}

.blog__detail__hero__heading {
  margin-top: 65px;
  padding-top: 15px;
  font-size: 48px;
  font-weight: 500;
  width: 55vw;
  z-index: 9;
}

.blog__detail__hero__heading span {
  padding: 12px 0;
  padding-right: 20px;
  background-color: #fff;
  line-height: 1.5;
}

.blog__details__image__wrapper {
  /* /* margin-bottom: 40px; */
  margin-top: 90px;
  height: 520px;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  /* border: 5px solid #fff; */
  border-right: none;
  border-bottom: none;
}

.blog__details__image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog__details {
  margin-top: 80px;
  padding: 0 var(--section-padding-lr);
}

.blog__details__sidebar {
  border: 2px solid #ededed;
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 100px;
}

.blog__details__sidebar h3 {
  font-size: 23px;
  font-weight: 500;
}

.blog__topics__list {
  margin-top: 20px;
}

.blog__topics__list__item {
  margin-top: 8px;
  display: flex;
  background-color: #f0f0f0;
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  cursor: pointer;
}

.blog__topics__list__item {
  padding: 8px 14px;
  font-family: var(--poppins);
  font-size: 15px;
  font-weight: 500;
}

.blog__topics__list__item.active {
  background-color: var(--blue);
  border: none;
}

.blog__topics__list__item.active {
  color: #fff;
}

.blog__details__content__heading {
  margin-top: 40px;
  font-size: 32px;
  font-weight: 500;
  color: var(--blue);
}

.blog__details__content__list {
  list-style: disc;
  margin-left: 20px;
}

.blog__details__content__list__item {
  color: #5e5e5e;
  font-size: 16px;
  line-height: 28px;
}

.blog__details__content__list__item::marker {
  font-size: 12px;
}

.blog__details__content__heading:first-of-type {
  margin-top: 20px;
}

/* ------------------------- */
/* ----- Products Page ----- */
/* ------------------------- */

/* BEGINS: Products Page - Hero section */
.products__hero {
  height: 600px;
  position: relative;
}

.products__hero__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products__hero__content {
  max-width: 800px;
  position: absolute;
  top: 50%;
  left: var(--section-padding-lr);
  transform: translateY(-50%);
}

.products__hero__content h1 {
  color: #fff;
  font-size: 45px;
  line-height: 64px;
  font-weight: 600;
}

.products__hero__content p {
  margin-top: 20px;
  color: #fff;
  font-size: 22px;
  line-height: 36px;
}
/* ENDS: Products Page - Hero section */

/* BEGINS: Products Page - Products List */
.products__section {
  padding: 40px var(--section-padding-lr);
  background: linear-gradient(151deg, #352a00, #3d5dbd);
}

.products__section .section__paragraph {
  max-width: 700px;
}
/* 
.product__card {
  padding: 32px 32px;
  background-color: #fff;
  border-radius: 22px;
}

.product__card__heading {
  font-size: 32px;
  font: 500;
}

.product__card__paragraph {
  margin-top: 16px;
  font-size: 18px;
}

*/

.product__features li {
  margin-top: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product__features li i {
  background-color: var(--blue);
  color: #fff;
  width: 25px;
  height: 25px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.product__image__wrapper {
  border-radius: 22px;
  overflow: hidden;
}

.product__image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__heading {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}

.product__paragraph {
  margin-top: 15px;
  font-size: 18px;
  color: #fff;
}

.product__buttons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ENDS: Products Page - Products List */

/* ---------------------- */
/* ----- Industries ----- */
/* ---------------------- */
.industry__hero {
  position: relative;
  height: 600;
  height: 400px;
}

.industry__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry__hero::before {
  height: 100%;
  width: 200px;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999999;
}

.industry__card__wrapper {
  padding: 0 var(--section-padding-lr);
}

.industry__card {
  margin-top: 80px;
  padding: 40px;
  border-radius: 22px;
}

.industry__card__wrapper:nth-of-type(odd) .industry__card {
  background-color: #dbf0ff;
}
.industry__card__wrapper:nth-of-type(even) .industry__card {
  background-color: #ffffdf;
}

.industry__card__wrapper:nth-of-type(odd) .industry__card .row {
  flex-direction: row-reverse;
}

.industry__image__wrapper {
  border-radius: 22px;
  overflow: hidden;
}

.industry__image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry__wide__card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.industry__card__title {
  font-size: 36px;
  font-weight: 600;
}

.industry__card__paragraph {
  margin-top: 6px;
  font-size: 18px;
  line-height: 32px;
}

.industry__wide__card__content button {
  margin-top: 20px;
}

/* ----------------------- */
/* ----- Career Page ----- */
/* ----------------------- */
.career__hero {
  height: 580px;
}

/* BEGINS: Team Members Galary Section */
.team__gallary {
  padding: 60px 0;
  padding-bottom: 120px;
  width: 100%;
  overflow-x: hidden;
}

.team__gallary .section__head {
  margin: 0 var(--section-padding-lr);
}

.teamGallarySwiper {
  overflow: visible;
}

.teamGallarySwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.team__gallary__image__wrapper.moveY {
  transform: translateY(50px);
}

.team__gallary__image__wrapper {
  aspect-ratio: 1/2;
}

/* .team__gallary__image__wrapper:nth-last-of-type(even) {
  transform: translateY(300px);
} */

.team__gallary__image__wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 99px;
}

/* ENDS: Team Members Galary Section */

/* BEGINS: Hiring Process */
.hiring__process {
  margin-top: 30px;
  padding: 40px var(--section-padding-lr);
  background-color: #ffff822b;
}

.hiring__process__cards {
  margin-top: 80px;
  display: flex;
  gap: 50px;
  position: relative;
}

.hiring__process__cards::before {
  content: " ";
  display: block;
  width: 80%;
  height: 0;
  border-top: 2px dashed #c2c2c2;
  position: absolute;
  top: 89px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.hiring__process__card__icon {
  background-color: #deffd7;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hiring__process__card__icon img {
  width: 60px;
}

.hiring__process__card:nth-of-type(1) .hiring__process__card__icon {
  background-color: #ebf5fc;
}
.hiring__process__card:nth-of-type(2) .hiring__process__card__icon {
  background-color: #feffcf;
}
.hiring__process__card:nth-of-type(3) .hiring__process__card__icon {
  background-color: #e2dbfd;
}
.hiring__process__card:nth-of-type(4) .hiring__process__card__icon {
  background-color: #deffd7;
}
.hiring__process__card:nth-of-type(5) .hiring__process__card__icon {
  background-color: #ffe1e3;
}

.hiring__process__card:nth-of-type(5) .hiring__process__card__icon::before {
  display: none;
}

.hiring__process__card__icon::before {
  content: "";
  position: absolute;
  width: 55px;
  height: 16px;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  background: url(https://cdn-server.hiddenbrains.com/Company/_next/static/media/step-arr.00ff5664.svg)
    no-repeat;
  display: block;
}

.hiring__process__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hiring__process__card__hading {
  margin-top: 20px;
  font-size: 24px;
  font-size: 600;
  text-align: center;
}

.hiring__process__card__subtext {
  text-align: center;
}
/* ENDS: Hiring Process */

/* BEGINS: Job Section */
.job__section {
  margin-top: 80px;
  padding: 40px var(--section-padding-lr);
}

.job__type__list__item {
  /* margin-top: 10px; */
}

.job__type__list__item a {
  display: inline-block;
  width: 100%;
  padding: 14px 22px;
  color: #000;
  border-radius: 12px;
}

.job__type__list__item:hover a {
  color: var(--blue);
}

.job__type__list__item.active a {
  background-color: var(--blue);
  border-left: 2px solid var(--blue);
  color: #fff;
}

.jobs__list {
  padding: 0 20px;
  max-height: 80vh;
  overflow-y: scroll;
}

.jobs__list {
  scrollbar-width: thin;
}

.jobs__list {
  overflow: auto; /* Required for the scrollbar to appear when needed */
}

.job__list__card {
  margin-top: 20px;
  padding: 22px 32px;
  border-radius: 22px;
  background-color: #fff;
  box-shadow: 0 0 14px -5px #b1bfff;
  position: relative;
}

.job__card__title {
  font-size: 26px;
}

.job__card__badge__list {
  padding-right: 10px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job__card__badge {
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid #000000c2;
}

.job__card__description {
  margin-top: 10px;
  font-size: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job__card__button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 52px;
  height: 52px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--blue);
  border: 1px solid var(--blue);
  transition: all 0.5s;
}

.job__card__button:hover {
  background-color: var(--blue);
  color: #fff;
}

.job__card__button i {
  transform: rotate(-135deg);
  transition: all 0.5s;
}
.job__card__button:hover i {
  transform: rotate(-135deg) translate(0px, 5px);
}
/* ENDS: Job Section */

/* ----------------------------------- */
/* ----- Terms & Conditions Page ----- */
/* ----------------------------------- */

.tnc__hero {
  height: 400px;
  background-color: #2d2a39;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tnc__hero__content {
  text-align: center;
  max-width: 900px;
}

.tnc__hero__content h1 {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
}
.tnc__hero__content p {
  font-size: 18px;
  color: #fff;
}

.tnc__grid {
  margin-top: 80px;
  margin-inline: var(--section-padding-lr);
  display: grid;
  grid-template-columns: 300px auto;
}

.tnc__sidebar {
  padding-right: 20px;
  align-self: flex-start;
  position: sticky;
  top: 100px;
  border-right: 1px solid #00000024;
}

.tnc__topics__menu {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.tnc__topics__list__item {
  margin-top: 12px;
  font-size: 16px;
  cursor: pointer;
  display: inline;
  color: #363246;
  border-bottom: 2px solid transparent;
}

.tnc__topics__list__item.active {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}

.tnc__content {
  padding-left: 30px;
}

.tnc__content__heading {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 500;
}

.tnc__content__heading:nth-of-type(1) {
  margin-top: 0;
}

.tnc__content__list {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 15px;
}

.tnc__content__list__item {
  color: #7b7b7b;
  font-size: 16px;
  line-height: 1.7;
}

.tnc__content__list__item::marker {
  font-size: 12px;
}
