@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Plus Jakarta Sans";
  --secondary-font: "Mulish";
  --primary-color: #8634da;
  --secondary-color: #ffffff;
  --ac-20: #e6f5ff;
  --ac-40: #99d6ff;
  --ac-60: #66c2ff;
  --ac-80: #33adff;
  --ac-120: #007acc;
  --ac-140: #005c99;
  --ac-160: #003d66;
  --ac-180: #000f19;
  --ac-ash: #9ca3af;
  --ac-black: #000000;
  --ac-border: #2b343a;
  --ac-BG: #02070a;
  --text-gradient: linear-gradient(91deg, #fff 0.61%, #695b5b 100%);
  --background: linear-gradient(45deg, #fff, #908c9b);
  --box-shadow: 0px 0px 100px 0px rgba(0, 153, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--primary-font);
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
}

h6 {
  font-family: var(--secondary-font);
}

a {
  text-decoration: none !important;
}

p {
  color: var(--ac-ash);
  text-align: center;
  font-family: var(--secondary-font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
}

input {
  outline: none;
}

body {
  background: var(--ac-black) !important;
}

html, body {
  overflow: hidden;
}

.container {
  max-width: 1400px !important;
  margin: auto;
  padding: 0 14px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Webkit Scroll bar */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  transition: 0.3s;
  background: var(--primary-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Webkit Scroll bar */

/* Our Values Start */
.our_value {
  position: relative;
  width: 100%;
  background: var(--ac-BG);
  padding: 80px 0;
  overflow: hidden;
}

.our_value .bg_shape {
  position: absolute;
  top: 0px;
  left: -200px;
}

.our_value .bg_shape img {
  width: 800px;
  height: 800px;
}

.our_value .bg_shape2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
}

.our_value .bg_shape2 img {
  width: 600px;
  height: 600px;
}

.our_value .heading_wrapper {
  margin-bottom: 40px;
}

.our_value .heading_wrapper .desc {
  display: block;
  text-align: center;
  margin: 0px auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.our_value .our_value_wrappper {
  position: relative;
  z-index: 1;
}

.our_value .tag {
  display: block;
  text-align: center;
  margin: auto;
}

.our_value .tag span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.our_value .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0px 40px 0px;
  text-align: center;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our_value .row {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.our_value .col-12 {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: center;
}

.our_value .content_box {
  max-width: 50%;
  text-align: left;
}

.our_value .content_title {
  font-size: 32px;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our_value .content_text {
  display: block;
  text-align: left;
  margin: 0px auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.our_value .content_img {
  max-width: 50%;
  aspect-ratio: 16 / 12;
  border-radius: 24px;
  object-fit: cover;
  background-size: cover;
  background: transparent;
  overflow: hidden;
}

.our_value .content_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-size: cover;
  transition: 0.4s;
}

.our_value .content_img:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 992px) {
  .our_value .title {
    font-size: 34px;
  }

  .our_value .content_title {
    font-size: 24px;
  }

  .our_value .content_text {
    text-align: center;
  }

  .our_value .row {
    gap: 40px;
  }

  .our_value .col-12 {
    display: block;
    gap: 0px !important;
    flex-direction: column;
  }

  .our_value .content_img {
    order: 1;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .our_value .content_box {
    order: 2;
    max-width: 100%;
    text-align: center;
  }

  .our_value .bg_shape img {
    width: 500px;
    height: 500px;
  }

  .our_value .bg_shape2 img {
    width: 400px;
    height: 400px;
  }
}

/* Our Values End */

/* Team Start */

.team {
  width: 100%;
  background-image: url(../img/about/team-bg.webp);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  object-fit: contain;
  padding: 80px 0;
  overflow: hidden;
}

.team .tag {
  display: block;
  text-align: center;
  margin: auto;
}

.team .tag span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.team .heading_wrapper {
  margin-bottom: 40px;
}

.team .heading_wrapper .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0px 40px 0px;
  text-align: center;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team .heading_wrapper .desc {
  display: block;
  text-align: center;
  margin: 0px auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.team .team_card_wrapper {
  transition: 0.4s;
}

.team .team_card_wrapper .card_top_bg {
  padding: 0 20px;
  border-radius: 16px;
  height: 160px;
  background: linear-gradient(
    180deg,
    rgba(0, 153, 255, 0.24) 0%,
    rgba(2, 8, 15, 0) 100%
  );
  border-top: 4px solid var(--primary-color);
  margin-bottom: -110px;
}

.team .team_card_wrapper .card_img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 16;
  background-size: cover;
  background-position: center;
  object-fit: cover;
  border-radius: 16px;
  padding: 0 30px;
  overflow: hidden;
  z-index: 1;
}

.team .team_card_wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}

.team_card_wrapper .details {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 10px;
  height: 240px;
  margin-top: -110px;
  border-radius: 16px;
  border: 1px solid var(--ac-border);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.team_card_wrapper .details .name {
  font-size: 32px;
  text-align: center;
  font-family: var(--primary-font);
  margin: 20px 0;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team_card_wrapper .details .profession {
  display: block;
  text-align: center;
  margin: 0px auto;
  padding-bottom: 20px;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.team .team_card_wrapper .card_img .social {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 0.4s ease;
}

.team .team_card_wrapper:hover .card_img .social {
  bottom: 30px;
}

.team .team_card_wrapper .card_img .social a {
  width: 46px;
  height: 46px;
  font-size: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  transition: 0.4s;
}

.team .team_card_wrapper .card_img .social a:hover {
  background: var(--secondary-color);
}

.team .team_card_wrapper .card_img .social a i {
  color: var(--ac-black);
}

.team .team_card_wrapper .card_img .social i {
  color: var(--primary-color);
  transition: 0.4s;
}

.team .team_card_wrapper .icon svg {
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 992px) {
  .team .heading_wrapper .title {
    font-size: 34px;
  }
  .team .col-lg-4 {
    margin-bottom: 20px;
  }
  .team .col-lg-4:nth-last-child(1) {
    margin-bottom: 0px;
  }
}

/* Team End */

/* Brand Start */
.others_counter {
  margin: auto;
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--ac-BG);
  width: 100%;
  padding: 80px 0px;
}

.others_counter .tag {
  position: relative;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  z-index: 2 !important;
}

.others_counter .tag span {
  font-size: 18px;
  font-weight: 500;
  display: block;
  text-align: center;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  background: var(--ac-BG);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.others_counter .bg_shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  aspect-ratio: 16 / 16;
}

.others_counter .bg_shape img {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
  background-size: contain;
}

.others_counter .counter_line {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ac-black);
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(
      to right,
      rgba(2, 8, 15, 0.5) 10%,
      #0099ff 50%,
      #0099ff 50%,
      rgba(2, 8, 15, 0.5) 90%
    )
    1 stretch;

  margin-top: 30px;
  z-index: 1;
}

.others_counter .counter-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.others_counter .counter {
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.others_counter .counters {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  z-index: 1;
}

.others_counter .counter .count_number {
  font-size: 48px;
  text-align: center;
  font-family: var(--primary-font);
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.others_counter .counter p {
  display: block;
  margin: auto;
  text-align: center;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

@media screen and (max-width: 992px) {
  .others_counter .counter .count_number {
    font-size: 34px;
  }

  .others_counter .counters {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Brand End */

/* Testimonial Start */
.testimonials {
  position: relative;
  width: 100%;
  background: var(--ac-BG);
  padding: 80px 0;
  overflow: hidden;
}

.testimonials .heading_wrapper {
  margin-bottom: 40px;
}

.testimonials .heading_wrapper .desc {
  display: block;
  text-align: center;
  margin: 0px auto;
  max-width: 750px;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

.testimonials .testimonials_wrappper {
  position: relative;
  z-index: 1;
}

.testimonials .tag {
  display: block;
  text-align: center;
  margin: auto;
}

.testimonials .tag span {
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid var(--ac-ash);
  border-radius: 30px;
  text-align: center;
  color: var(--ac-ash);
  background: var(--ac-BG);
  font-family: var(--secondary-font);
  border-radius: 30px;
  padding: 10px 40px;
  margin: 0;
}

.testimonials .title {
  font-size: 46px;
  font-family: var(--primary-font);
  margin: 20px 0px 40px 0px;
  text-align: center;
  font-weight: bold;
  background: var(--text-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials .testimonial_card {
  background: var(--ac-BG);
  border: 1px solid var(--ac-border);
  padding: 20px;
  border-radius: 16px;
  width: 100%;
  transition: 0.4s;
}

.testimonials .testimonial_card:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

.testimonials .stars {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 10px;
}
.testimonials .testimonial_text {
  display: block;
  text-align: left;
  margin: 0px auto;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}
.testimonials .profile {
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.testimonials .profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 10px;
}
.testimonials .profile_info {
  display: flex;
  flex-direction: column;
}
.testimonials .profile_info .name {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-color);
  font-family: var(--secondary-font);
  margin-bottom: 6px;
  transition: 0.4s;
}
.testimonials .profile_info .role {
  display: block;
  text-align: left;
  margin: 0px auto;
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--ac-ash);
  font-weight: 400;
}

@media screen and (max-width: 992px) {
  .testimonials .title {
    font-size: 34px;
  }

  .testimonials .testimonial_card {
    margin-bottom: 20px;
  }
}
/* Testimonial End */
