.aboutus_page_banner {
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 100px;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .aboutus_page_banner {
    min-height: 600px;
    padding: 80px 60px;
  }
}
@media screen and (max-width: 767px) {
  .aboutus_page_banner {
    min-height: 550px;
    padding: 70px 30px;
  }
  .aboutus_page_banner::after {
    height: 220px;
  }
}
.aboutus_page_banner .aboutus_page_banner_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.aboutus_page_banner::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 99.38%);
  z-index: 1;
  pointer-events: none;
}
.aboutus_page_banner .left_section {
  width: calc(65% - 25px);
  position: relative;
  z-index: 2;
}
  @media screen and (max-width: 992px) {
        .aboutus_page_banner .left_section{
        width: 100%;
  }
}
  @media screen and (max-width: 767px) {
        .aboutus_page_banner .left_section{
        width: 100%;
  }
}
.aboutus_page_banner .left_section .title {
  font-family: "Poppins", sans-serif !important;
  font-style: normal;
  font-weight: 600;
  font-size: 54px;
  line-height: 1.15;
  color: #272e34;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  margin: 0 0 10px;
}
@media screen and (max-width: 992px) {
  .aboutus_page_banner .left_section .title {
    font-size: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .aboutus_page_banner .left_section .title {
    font-size: 24px;
    width: 100%;
  }
}
.aboutus_page_banner .left_section .book_btn {
  margin-top: 30px;
  min-height: 50px;
  width: fit-content;
  padding: 10px 30px;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #ff558b 0%, #736eff 100%);
  color: #ffffff;
  font-family: "Poppins", sans-serif !important;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
}
.aboutus_page_banner .left_section .book_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s ease;
}
.aboutus_page_banner .left_section .book_btn:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.aboutus_page_banner .left_section .book_btn:hover::before {
  right: 100%;
}
.aboutus_page_banner .left_section .book_btn:active {
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .aboutus_page_banner .left_section .book_btn {
    min-height: 46px;
    padding: 8px 22px;
    font-size: 15px;
    margin-top: 25px;
  }
}

.counter-section {
  width: 100%;
  padding: 0 50px;
  position: relative;
  margin-top: 50px;
  z-index: 5;
}
@media screen and (max-width: 992px) {
  .counter-section {
    padding: 0 30px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .counter-section {
    padding: 0 20px;
    margin-top: 30px;
  }
}
.counter-section .counter-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #050505;
  border-radius: 30px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}
@media screen and (max-width: 992px) {
  .counter-section .counter-container {
    gap: 14px;
    padding: 16px;
    border-radius: 25px;
  }
}
@media screen and (max-width: 768px) {
  .counter-section .counter-container {
    flex-wrap: wrap;
    gap: 12px;
    padding: 15px;
    border-radius: 22px;
  }
}
.counter-section .counter-container .counter-item {
  flex: 1 1 0;
  min-width: 0;
  padding: 25px 15px;
  background: #1a1a1a;
  border: 1px solid rgba(186, 186, 186, 0.2);
  border-radius: 29px;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .counter-section .counter-container .counter-item {
    padding: 22px 12px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 768px) {
  .counter-section .counter-container .counter-item {
    flex: 1 0 calc(30% - 6px);
    padding: 20px 10px;
    border-radius: 20px;
  }
}
.counter-section .counter-container .value {
  font-family: "Poppins", sans-serif !important;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 12px;
}
@media screen and (max-width: 1400px) {
  .counter-section .counter-container .value {
    font-size: 42px;
  }
}
@media screen and (max-width: 992px) {
  .counter-section .counter-container .value {
    font-size: 34px;
  }
}
@media screen and (max-width: 767px) {
  .counter-section .counter-container .value {
    font-size: 26px;
    margin-bottom: 8px;
  }
}
.counter-section .counter-container .value span {
  color: #ffd45a;
  font-size: 38px;
  font-family: "Poppins", sans-serif !important;
}
@media screen and (max-width: 992px) {
  .counter-section .counter-container .value span {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .counter-section .counter-container .value span {
    font-size: 22px;
  }
}
.counter-section .counter-container .label {
  font-family: "Poppins", sans-serif !important;
  font-size: 18px;
  font-weight: 400;
  color: #777;
  line-height: 1.3;
}
@media screen and (max-width: 992px) {
  .counter-section .counter-container .label {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .counter-section .counter-container .label {
    font-size: 12px;
  }
}

.about-container {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  column-gap: 45px;
}
@media screen and (max-width: 992px) {
  .about-container {
    padding: 0 25px;
    column-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .about-container {
    padding: 0 20px;
    row-gap: 35px;
    flex-direction: column;
  }
}


@media screen and (max-width: 767px) {
  .about-content {
    max-width: 100%;
  }
}
.about-content .about-text {
  margin: 14px;
  color: #6E6E6E;
  font-size: 19px;
  font-family: "Poppins", sans-serif !important;
  font-weight: 500;
  line-height: 1.43;
}
.about-content .about-text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 992px) {
  .about-content .about-text {
    font-size: 15px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .about-content .about-text {
    font-size: 15px;
    line-height: 1.5;
  }
}
.about-container .about-image {
  width: 35%;
  flex-shrink: 0;
  /* margin-top: 30px; */
}

.about-container .about-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 992px) {
  .about-container .about-image {
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .about-container .about-image {
    width: 70%;
    max-width: 100%;
  }
}

.drive_section_banner {
  width: 100%;
}
.drive_section_banner .common_section_title {
  font-family: "Poppins", sans-serif !important;
  line-height: 1.43;
  margin-bottom: 10px;
}
.drive_section_banner .mission-vision {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .drive_section_banner .mission-vision {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .drive_section_banner .mission-vision {
    gap: 15px;
    flex-direction: column;
  }
}
.drive_section_banner .drive-card {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .drive_section_banner .drive-card {
    width: 100%;
  }
}
.drive_section_banner .drive-box {
  position: relative;
  width: fit-content;
  height: 45px;
  background: #111111;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  padding: 0 16px;
  box-sizing: border-box;
  z-index: 2;
}
.drive_section_banner .drive-box h3 {
  position: relative;
  z-index: 2;
  margin-top: 25px;
  padding: 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 30px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
}
.drive_section_banner .drive-box::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -25px;
  bottom: 0;
  background-image: url("https://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2026/08/13102022/about-black-curved.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .drive_section_banner .drive-box {
    min-width: 140px;
  }
  .drive_section_banner .drive-box h3 {
    font-size: 24px;
  }
}
.drive_section_banner .drive-box-content {
  width: 100%;
  padding: 20px 22px;
  box-sizing: border-box;
  background: #111111;
  border-radius: 0 25px 25px 25px;
}
@media screen and (max-width: 767px) {
  .drive_section_banner .drive-box-content {
    padding: 20px;
  }
  .drive_section_banner .drive-box-content h3 {
    font-size: 24px;
  }
}
.drive_section_banner .drive-box-content .common_desc_text {
  margin: 0;
  color: #c8c8c8;
}
.drive_section_banner .drive-card:last-child .drive-box {
  margin-left: auto;
}
.drive_section_banner .drive-card:last-child .drive-box::before {
  right: auto;
  left: -25px;
  transform: scaleX(-1);
}
.drive_section_banner .drive-card:last-child .drive-box-content {
  border-radius: 18px 0 18px 18px;
}

.timeline-section {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
.timeline-section .timeline-wrapper {
  width: 100%;
  box-sizing: border-box;
}
.timeline-section .timeline-wrapper .common_section_title {
  margin: 0;
  line-height: 1.2;
  text-align: left !important;
}
@media screen and (max-width: 992px) {
  .timeline-section .timeline-wrapper .common_section_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline-wrapper .common_section_title {
    font-size: 24px;
    letter-spacing: -0.4px;
  }
}
.timeline-section .timeline {
  position: relative;
  margin-top: 55px;
  padding: 0;
}
.timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 100px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #f5f5f5 0%, rgba(210, 210, 210, 0.7) 50%, #f5f5f5 100%);
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline::before {
    left: 58px;
  }
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline {
    margin-top: 35px;
  }
}
.timeline-section .timeline-item {
  position: relative;
  width: 100%;
  min-height: 145px;
  margin: 0 0 55px;
  padding: 0;
}
.timeline-section .timeline-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline-item {
    min-height: 140px;
    margin-bottom: 40px;
  }
}
.timeline-section .timeline-item .timeline-year {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  padding: 10px 6px;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  color: #333;
  font-family: "Poppins", sans-serif !important;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  z-index: 2;
}
.timeline-section .timeline-item .timeline-year::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 6px;
  background: linear-gradient(90deg, #ff558b 0%, #736eef 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline-item .timeline-year {
    width: 42px;
    padding: 6px 5px;
    font-size: 11px;
  }
}
.timeline-section .timeline-item .timeline-dot {
  position: absolute;
  left: 100px;
  top: 50%;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  border-radius: 50%;
  background: linear-gradient(90deg, #ff558b 0%, #736eef 100%);
  border: 2px solid #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline-item .timeline-dot {
    left: 58px;
    width: 16px;
    height: 16px;
    border-width: 1.5px;
  }
}
.timeline-section .timeline-item .timeline-card {
  width: calc(100% - 135px);
  margin-left: 135px;
  min-height: 145px;
  padding: 22px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline-item .timeline-card {
    width: calc(100% - 78px);
    margin-left: 78px;
    min-height: 140px;
    padding: 14px;
    border-radius: 13px;
  }
}
.timeline-section .timeline-item .timeline-card .timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline-item .timeline-card .timeline-header {
    gap: 6px;
    margin-bottom: 11px;
    flex-wrap: wrap;
  }
}
.timeline-section .timeline-item .timeline-card .version,
.timeline-section .timeline-item .timeline-card .timeline-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 11px;
  box-sizing: border-box;
  background: #fff;
  color: #333;
  border-radius: 7px;
  font-family: "Poppins", sans-serif !important;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.timeline-section .timeline-item .timeline-card .version::before,
.timeline-section .timeline-item .timeline-card .timeline-title::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 7px;
  background: linear-gradient(90deg, #ff558b 0%, #736eef 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline-item .timeline-card .version,
  .timeline-section .timeline-item .timeline-card .timeline-title {
    height: 26px;
    padding: 0 7px;
    font-size: 10px;
    border-radius: 5px;
  }
  .timeline-section .timeline-item .timeline-card .version::before,
  .timeline-section .timeline-item .timeline-card .timeline-title::before {
    border-radius: 5px;
  }
}
.timeline-section .timeline-item .timeline-card .timeline-card p {
  margin: 0;
  color: #6e6e6e;
  font-family: "Poppins", sans-serif !important;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
}
@media screen and (max-width: 767px) {
  .timeline-section .timeline-item .timeline-card .timeline-card p {
    font-size: 11px;
    line-height: 1.5;
  }
}

.people-section {
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .people-section {
    padding: 45px 0;
  }
}
.people-section .common_section_title {
  margin-bottom: 25px;
  line-height: 44px;
}

@media screen and (max-width: 767px) {
  .people-section .common_section_title {
    margin-bottom: 15px;
    padding-left: 24px;
    font-size: 20px;
    line-height: 30px;
  }
}
.people-section .people-grid {
  display: flex;
  align-items: stretch;
  gap: 15px;
}
@media screen and (max-width: 992px) {
  .people-section .people-grid {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .people-section .people-grid {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}
.people-section .people-grid .person-card,
.people-section .people-grid .team-card {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
}
@media screen and (max-width: 992px) {
  .people-section .people-grid .person-card,
  .people-section .people-grid .team-card {
    width: calc(50% - 8px);
  }
}
@media screen and (max-width: 767px) {
  .people-section .people-grid .person-card,
  .people-section .people-grid .team-card {
    width: calc(50% - 8px);
  }
}
.people-section .people-grid .person-card {
  overflow: hidden;
  background: #000;
  border: 5px solid #000;
}
.people-section .people-grid .person-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 280/300;
  object-fit: cover;
  border-radius: 15px;
}
.people-section .people-grid .person-card .person-details {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 8px 8px;
  background: rgba(0, 0, 0, 0.9);
}
@media screen and (max-width: 767px) {
  .people-section .people-grid .person-card .person-details {
    padding: 8px 7px;
  }
}
.people-section .people-grid .person-card .person-name {
  margin: 0 0 3px;
  color: #fff;
  font-family: "Poppins", sans-serif !important;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .people-section .people-grid .person-card .person-name {
    font-size: 13px;
  }
}
.people-section .people-grid .person-card .person-role {
  margin: 0;
  color: #c8c8c8;
  font-family: "Poppins", sans-serif !important;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .people-section .people-grid .person-card .person-role {
    font-size: 9px;
  }
}
.people-section .team-card {
  position: relative;
  overflow: visible;
  background: #000;
  border-radius: 20px;
  color: #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  /* Arrow */
  /* Curve */
}
.people-section .team-card .team-details {
  position: relative;
  z-index: 5;
  width: 100%;
  box-sizing: border-box;
}
.people-section .team-card::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 46px;
  height: 46px;
  background: url("https://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2026/08/13165528/view-arrow-icon.webp") center/contain no-repeat;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .people-section .team-card::before {
    width: 40px;
    height: 40px;
  }
}
.people-section .team-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: url("https://technource.s3.us-west-1.amazonaws.com/wp-content/uploads/2025/12/02104808/industry-view-arrow-icon2.png") center/contain no-repeat;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .people-section .team-card::after {
    width: 70px;
    height: 70px;
  }
}
.people-section .team-card .team-details {
  position: relative;
  z-index: 5;
  height: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .people-section .team-card .team-details {
    padding: 55px 14px 14px;
  }
}
.people-section .team-card .team-title {
  margin: 0 0 20px;
  font-family: "Poppins", sans-serif !important;
  font-size: 42px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1px;
  background: linear-gradient(90deg, #ff558b 0%, #736eef 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .people-section .team-card .team-title {
    margin-bottom: 14px;
    font-size: 31px;
    letter-spacing: -0.5px;
  }
}
.people-section .team-card .team-count {
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid #292929;
  border-bottom: 1px solid #292929;
  color: #c8c8c8;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .people-section .team-card .team-count {
    padding: 10px 0;
    font-size: 11px;
  }
}
.people-section .team-card .team-description {
  max-width: 240px;
  margin: 16px 0 0;
  color: #d0d0d0;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .people-section .team-card .team-description {
    margin-top: 12px;
    font-size: 11px;
  }
}

.industry-section {
  width: 100%;
  padding: 7px 20px 25px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .industry-section {
    padding: 15px 20px 30px;
  }
}
@media screen and (max-width: 768px) {
  .industry-section {
    padding: 15px;
  }
}
.industry-section .industry-section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 38px;
  gap: 8px;
}
@media screen and (max-width: 992px) {
  .industry-section .industry-section-heading {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .industry-section .industry-section-heading {
    gap: 6px;
    margin-bottom: 25px;
  }
}
.industry-section .industry-section-heading .common_section_title {
  line-height: 1.2;
}
@media screen and (max-width: 992px) {
  .industry-section .industry-section-heading .common_section_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .industry-section .industry-section-heading .common_section_title {
    font-size: 24px;
  }
}
.industry-section .industry-card-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 992px) {
  .industry-section .industry-card-grid {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .industry-section .industry-card-grid {
    gap: 15px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.industry-section .industry-card-grid .industry-card {
  position: relative;
  grid-template-rows: 1fr;
  width: 100%;
  height: 222px;
  padding: 10px;
  overflow: hidden;
  background: #fff;
  border-radius: 15px;
  border: 1px solid #D7D7D7;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (max-width: 992px) {
  .industry-section .industry-card-grid .industry-card {
    height: 210px;
  }
}
@media screen and (max-width: 768px) {
  .industry-section .industry-card-grid .industry-card {
    height: 190px;
    padding: 8px;
    border-radius: 13px;
  }
}
.industry-section .industry-card-grid .industry-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 9px;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 768px) {
  .industry-section .industry-card-grid .industry-card-image {
    top: 8px;
    left: 8px;
    border-radius: 8px;
  }
}
.industry-section .industry-card-grid .industry-card-image-overlay {
  position: absolute;
  inset: 10px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
}
@media screen and (max-width: 768px) {
  .industry-section .industry-card-grid .industry-card-image-overlay {
    top: 8px;
    left: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 8px;
  }
}
.industry-section .industry-card-grid .industry-card-content {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  min-height: 80px;
  padding: 10px 15px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .industry-section .industry-card-grid .industry-card-content {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 70px;
    padding: 8px 8px 7px;
  }
}
.industry-section .industry-card-grid .industry-card-title {
  margin-bottom: 3px;
  color: #fff;
  font-family: "Poppins", sans-serif !important;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 992px) {
  .industry-section .industry-card-grid .industry-card-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .industry-section .industry-card-grid .industry-card-title {
    font-size: 22px;
  }
}
.industry-section .industry-card-grid .industry-card-description {
  margin: 0;
  color: #fff;
  font-family: "Poppins", sans-serif !important;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 992px) {
  .industry-section .industry-card-grid .industry-card-description {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .industry-section .industry-card-grid .industry-card-description {
    font-size: 13px;
  }
}

.career_page_wrapper {
  background: #000;
}
.career_page_wrapper .career_page_banner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .career_page_wrapper .career_page_banner {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .career_page_wrapper .career_page_banner {
    flex-direction: column;
    gap: 30px;
  }
}
.career_page_wrapper .career_page_banner .left_section {
  width: calc(100% - 520px);
  flex-shrink: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  .career_page_wrapper .career_page_banner .left_section {
    width: calc(100% - 390px);
  }
}
@media screen and (max-width: 767px) {
  .career_page_wrapper .career_page_banner .left_section {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.career_page_wrapper .career_page_banner .left_section .title {
  margin: 0;
  font-family: "Poppins", sans-serif !important;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  background: linear-gradient(90deg, #ff6b6b 0%, #ed4f8d 35%, #b44ee8 70%, #7654ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 992px) {
  .career_page_wrapper .career_page_banner .left_section .title {
    font-size: 52px;
  }
}
@media screen and (max-width: 767px) {
  .career_page_wrapper .career_page_banner .left_section .title {
    font-size: 48px;
  }
}
.career_page_wrapper .career_page_banner .left_section .common_desc_text {
  max-width: 800px;
  margin: 14px 0 30px;
  color: #fff;
  font-family: "Poppins", sans-serif !important;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 992px) {
  .career_page_wrapper .career_page_banner .left_section .common_desc_text {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .career_page_wrapper .career_page_banner .left_section .common_desc_text {
    max-width: 650px;
    font-size: 22px;
  }
}
.career_page_wrapper .career_page_banner .left_section .book_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 10px;
  color: #fff;
  font-family: "Poppins", sans-serif !important;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  background: linear-gradient(100deg, #ff6868 0%, #e95091 40%, #a84ce5 72%, #7054f7 100%);
}
.career_page_wrapper .career_page_banner .career_page_banner_img {
  display: block;
  width: 100%;
  aspect-ratio: 414/350;
  height: 300px;
  flex: 0 0 500px;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 992px) {
  .career_page_wrapper .career_page_banner .career_page_banner_img {
    width: 370px;
    height: 240px;
    flex-basis: 370px;
  }
}
@media screen and (max-width: 767px) {
  .career_page_wrapper .career_page_banner .career_page_banner_img {
    width: 100%;
    max-width: 500px;
    height: 280px;
    flex-basis: auto;
  }
}

/*# sourceMappingURL=aboutus_page.css.map */
