:root {
  --font-base: "Poppins", Sans-serif;
  --marquee-speed: 60s;
  --marquee-logo-height: 48px;
  --marquee-logo-gap: 64px;
  --marquee-text-size: 10px;
  --marquee-divider-color: rgba(0, 0, 0, 0.4);
  --marquee-fade-width: 80px;
  --marquee-item-space: 60px;
}

.marquee-section {
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}

.marquee-wrapper {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--marquee-fade-width);
  pointer-events: none;
  z-index: 2;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
  display: flex;
  width: fit-content;
  animation: marquee-scroll var(--marquee-speed) linear infinite;
  will-change: transform;
}

.marquee-list {
  display: flex;
  align-items: center;
  gap: var(--marquee-logo-gap);
  flex-shrink: 0;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-right: var(--marquee-item-space);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-size: var(--marquee-text-size);
  font-weight: 500;
  line-height: 1.4;
  position: relative;
  padding-left: 10px;
  text-align: left;
}

.logo-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 75%;
  width: 1px;
  background: var(--marquee-divider-color);
}

.marquee-item img {
  height: var(--marquee-logo-height);
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --marquee-logo-gap: 32px;
    --marquee-logo-height: 36px;
    --marquee-fade-width: 24px;
  }
}

.page-template-custom-homepage-v6,
.page-template-custom-homepage-v6 .wrapper {
  overflow: visible !important;
}

.homepage-v6 .max-w-1000 {
  max-width: 1000px;
}

.homepage-v6 .max-w-900 {
  max-width: 900px;
}

.homepage-v6 .max-w-700 {
  max-width: 700px;
}

.homepage-v6 .mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.homepage-v6 .text-center {
  text-align: center;
}

.homepage-v6 .mb-0 {
  margin-bottom: 0;
}

.homepage-v6 .mb-8 {
  margin-bottom: 8px;
}

.homepage-v6 .mb-16 {
  margin-bottom: 16px;
}

.homepage-v6 .mb-24 {
  margin-bottom: 24px;
}

.homepage-v6 .mb-32 {
  margin-bottom: 32px;
}

.homepage-v6 .mb-40 {
  margin-bottom: 40px;
}

.homepage-v6 .mb-48 {
  margin-bottom: 48px;
}

.homepage-v6 .mb-60 {
  margin-bottom: 60px;
}

.homepage-v6 .mb-80 {
  margin-bottom: 80px;
}

/* Hero */
.hero-section {
  font-family: "Poppins", Sans-serif;
  position: relative;
  overflow: hidden;
  padding: 60px 0 140px 0;
  min-height: calc(100vh - 112px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section .image-marquee-container {
  margin-top: 100px;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .max-w-600 {
  max-width: 600px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: normal;
  color: #000000;
  margin-bottom: 20px;
  font-family: "Poppins";
}

.hero-section h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: normal;
  color: #000000;
  font-family: "Poppins";
}

.hero-section > img {
  position: absolute;
  z-index: 2;
}

.hero-section > img.icon1 {
  left: 8%;
  bottom: 38%;
}

.hero-section > img.icon2 {
  right: 8%;
  top: 12%;
}

.hero-section > img.icon3 {
  top: 24%;
  right: 12%;
}

.hero-section > img.icon4 {
  left: 8%;
  top: 10%;
}

.hero-section > img.icon5 {
  left: 8%;
  top: 24%;
}

.hero-section > img.icon6 {
  right: 5%;
  top: 30%;
}

.hero-section .action-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.hero-section .btn {
  background-color: #000000;
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
  color: #ffffff;
  border: 1px dashed transparent;
  border-radius: 8px;
  padding: 10px 24px 10px 24px;
  text-decoration: none;
}

.btn-gradient {
  background: linear-gradient(285deg, #7411cc 0%, #e42e84 100%) border-box;
}

.hero-section .btn:hover {
  background: #ffffff;
  color: #000000;
  border-color: #000000;
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  filter: blur(150px);
  z-index: 1;
  display: block;
}

.hero-section::before {
  content: "";
  aspect-ratio: 1 / 1;
  width: 50vw;
  height: 0;
  padding-top: 50vw;
  border-radius: 50%;
  background: #c3259821;
  position: absolute;
  top: 20%;
  left: -15vw;
}

.hero-section::after {
  content: "";
  width: 50vw;
  height: 0;
  padding-top: 50vw;
  border-radius: 50%;
  background: #7a12c817;
  position: absolute;
  top: -24%;
  right: 0;
}

@media (max-width: 767px) {
  .hero-section .bounce-animate.img {
    top: 60% !important;
  }

  .hero-section .bounce-animate.img img {
    width: 60px !important;
    height: 60px !important;
  }

  .hero-section::before,
  .hero-section::after {
    top: 0 !important;
  }

  .hero-section::before {
    left: 0 !important;
  }

  .hero-section::after {
    right: 0 !important;
  }

  .hero-section h2 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .hero-section h2 {
    font-size: 16px;
  }

  .hero-section > img.icon5,
  .hero-section > img.icon6 {
    display: none;
  }

  .hero-section .btn {
    font-size: 11px;
    padding: 8px 12px;
  }
}

.bounce-animate {
  animation: bounceAnimate 1.2s linear infinite alternate;
}

@keyframes bounceAnimate {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: 100%;
  }
}

/* testimonials */
.testimonials-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #121327 0%, #0d0e1b 100%);
  overflow: hidden;
}

.testimonials__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.testimonials__description {
  max-width: 900px;
}

.testimonials__description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 16px;
}

.testimonials__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonials__clutch {
  height: 44px;
}
.testimonials__meta-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: normal;
  background: linear-gradient(90deg, #dc098a 0%, #b616d7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.testimonials__track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: testimonials-scroll 140s linear 3s infinite;
  will-change: transform;
  transform: translateZ(0);
  padding-left: 4%;
}
.testimonials__track:hover {
  animation-play-state: paused;
}
.testimonials__item {
  width: 340px;
  min-height: 500px;
  padding: 30px 40px 30px 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  color: #fff;
  flex-shrink: 0;
}
@keyframes testimonials-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.testimonials__item--poster {
  padding-right: 70px;
}

.testimonials__item--purple {
  background: #7c13c6;
}

.testimonials__item--pink {
  background: linear-gradient(153.39deg, #c2259a 4.08%, #7c13c6 95.46%);
}

.testimonials__item--poster {
  position: relative;
  overflow: hidden;
  background: #1b1c2e;
}
.testimonials__item--poster .testimonials__logo {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  width: 120px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-transform: capitalize;
}

.testimonials__item:not(.testimonials__item--poster) .testimonials__logo {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  width: 120px;
  height: 60px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.testimonials__item:not(.testimonials__item--poster) .testimonials__logo img {
  max-height: 60px;
  object-fit: contain;
}
.testimonials__item.with-logo .testimonials__text {
  margin-top: 0 !important;
}
.testimonials__item.with-logo .testimonials__role {
  margin-bottom: 20px;
}
.testimonials__item.with-logo .testimonials__name {
  margin-top: auto;
}
.testimonials__item--poster .testimonials__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.testimonials__item--poster .testimonials__media > * {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.testimonials__item--poster::before {
  content: "";
  position: absolute;
  height: 40%;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.testimonials__item--poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(194, 37, 154, 0.45) 0%,
    rgba(124, 19, 198, 0.45) 100%
  );
}
.testimonials__item--poster:nth-child(2n)::before {
  background: url("https://tamediacdn.techaheadcorp.com/wp-content/uploads/2026/02/27134209/Group-1171275844-3.png")
    no-repeat center center / cover;
}
.testimonials__item--poster:nth-child(odd)::before {
  background: url("https://tamediacdn.techaheadcorp.com/wp-content/uploads/2026/02/27134208/Group-1171275844-2.png")
    no-repeat center center / cover;
}
.testimonials__avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 1px solid #fff;
}
.testimonials__avatar > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 6px;
}

.testimonials__role {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.testimonials__item--poster .testimonials__role {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.testimonials__text {
  font-size: 15px;
  line-height: 1.6;
  max-width: 290px;
}

.testimonials__cta {
  margin-top: -30px;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateY(100%);
  opacity: 0;
  transition: 500ms ease-in-out;
}
.testimonials__item .action-btn {
  width: 32px;
  height: 32px;
  display: inline-block;
  position: absolute;
  right: 24px;
  bottom: 30px;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.testimonials__item.url-none .testimonials__cta {
  opacity: 0 !important;
}
.testimonials__item--poster:hover .action-btn {
  opacity: 1;
}

.testimonials__item .action-btn .pause-icon {
  display: none;
}

.testimonials__item .action-btn.is-playing .play-icon {
  display: none;
}
.testimonials__item .action-btn.is-playing .pause-icon {
  display: inline;
}

.testimonials__text,
.testimonials__cta,
.testimonials__name {
  position: relative;
  z-index: 1;
}
.testimonials__item.testimonials__item--poster .testimonials__name,
.testimonials__item:not(.testimonials__item--poster) .testimonials__text {
  margin-top: auto;
}

.testimonials__item:hover .testimonials__cta {
  margin-top: 20px;
  opacity: 1;
  transform: translateY(0);
}

.testimonials__cta svg {
  width: 26px;
  width: 26px;
}
.testimonials__cta:hover {
  color: #fff;
}

/* section-strategic-path */
.section-strategic-path {
  background-color: #fff;
  padding: 60px 0;
}

.strategic-path-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #030303;
  margin-bottom: 24px;
}

.strategic-path-header p {
  font-family: "Poppins", Sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #222222;
}

.strategic-path-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.strategic-path-items > .strategic-path-item {
  background: linear-gradient(90deg, #7b8df6 0%, #b174d6 100%) 0% 0% no-repeat
    padding-box;
  border-radius: 24px;
  padding-top: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.strategic-path-items > .strategic-path-item:nth-child(2) {
  background: #84bdf1 linear-gradient(279deg, #84bdf1 0%, #8273f5 100%) 0% 0%
    no-repeat padding-box;
}

.strategic-path-items > .strategic-path-item:nth-child(3) {
  background: #c16dbf linear-gradient(313deg, #848ef4 0%, #c16dbf 100%) 0% 0%
    no-repeat padding-box;
}

.strategic-path-items .strategic-path-item > div {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 44px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
}

.strategic-path-items .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.strategic-path-items .cta-link svg {
  width: 24px;
  transition: transform 0.3s ease;
}

.strategic-path-items .cta-link:hover svg {
  transform: translateX(4px);
}

.strategic-path-items .strategic-path-item-counter {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin: 0 auto 20px;
}

.strategic-path-items .strategic-path-item-counter .shape-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56%;
  aspect-ratio: 1 / 1;
  background: #f6f2fa;
  border-radius: 50%;
  z-index: -1;
}

.strategic-path-items > div span {
  font-family: "Poppins", Sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #000;
  display: inline-block;
}

.strategic-path-items h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #222222;
}

.strategic-path-items h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  color: #000000;
  margin-bottom: 30px;
}

.strategic-path-items p {
  font-family: "Poppins", Sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: normal;
  color: #000000;
  max-width: 260px;
  margin: 0 auto 30px;
}

.strategic-path-items a {
  font-family: "Poppins", Sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 26px;
  letter-spacing: normal;
  color: #dd1bbf;
}

@media (max-width: 991px) {
  .strategic-path-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .strategic-path-items > .strategic-path-item:nth-child(3) {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .strategic-path-items {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .strategic-path-items > .strategic-path-item:nth-child(3) {
    grid-column: span 1;
  }
}

.trusted-by-brands {
  padding-top: 60px;
  background: linear-gradient(180deg, #171624 0%, #171623 100%);
}

.trusted-by-brands-header {
  max-width: 960px;
  margin: 0 auto 60px;
}

.trusted-by-brands .trusted-by-brands-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #ffffff;
  margin-bottom: 24px;
}

.trusted-by-brands .trusted-by-brands-header h2 .highlight {
  background: linear-gradient(90deg, #dc098a 0%, #af42fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  display: inline-block;
}

.trusted-by-brands .trusted-by-brands-header h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #ffffff;
}

.trusted-by-img-carousel1 .slide-img {
  max-width: 192px;
  width: 100%;
}

.trusted-by-img-carousel1 .slide-img img {
  height: 86px;
  -o-object-fit: contain;
  object-fit: contain;
}

.stats {
  background: linear-gradient(180deg, #25364900 0%, #283c50 100%);
  padding: 60px 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stat-item {
  position: relative;
  text-align: center;
  padding: 24px 30px;
  color: #fff;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgb(255 255 255 / 30%);
}

.stat-number {
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 12px;
}

.stat-number::after {
  content: "+";
}

.stat-item p {
  color: #ffffff;
  font-family: "Poppins", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:not(:last-child) {
    border-right: none;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

.case-studies-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #eff0fa 100%);
}

.case-studies-section .case-studies-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #030303;
  margin-bottom: 24px;
}

.case-studies-section .case-studies-header h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #222222;
}

.case-studies-section .case-studies-header h3 .highlight {
  background: linear-gradient(94deg, #5f48d8 0%, #e54771 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  display: inline-block;
}

.industry-cs-slider-home .slide {
  background: #f5f5f7;
  border-radius: 30px;
  display: flex;
  overflow: hidden;
  font-family: "Poppins", Sans-serif;
}

.industry-cs-slider-home {
  padding-bottom: 120px;
}

.industry-cs-slider-home .slide .text,
.industry-cs-slider-home .slide .media {
  flex: 0 0 50%;
}

.industry-cs-slider-home .slide .text {
  padding: 30px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  border-radius: 30px 0 0 30px;
  border: 1px solid #e3d3ee;
}

.industry-cs-slider-home .slide .text .case-study-btn {
  margin-top: auto;
  color: #dd1bbf;
  border-color: #dd1bbf;
}
.industry-cs-slider-home .slide .text .case-study-btn .arrow {
  border-color: #dd1bbf;
}
.industry-cs-slider-home .slide .text .case-study-btn .arrow::after,
.industry-cs-slider-home .slide .text .case-study-btn:hover {
  background-color: #dd1bbf;
}

.industry-cs-slider-home .slide .text .case-study-btn:hover {
  color: #fff;
  border-color: #fff;
}
.industry-cs-slider-home .slide .text .case-study-btn:hover .arrow {
  border-color: #fff;
}
.industry-cs-slider-home .slide .text .case-study-btn:hover .arrow::after {
  background-color: #fff;
}
.industry-cs-slider-home .slide .media {
  position: relative;
  padding-top: 36%;
  overflow: hidden;
  background: rgb(238 238 238 / 90%);
}

.industry-cs-slider-home .slide .media img,
.industry-cs-slider-home .slide .media video,
.lottie-player-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lottie-player-box lottie-player {
  width: 100%;
  height: 100%;
  display: block;
}

.industry-cs-slider-home .slide .text h2 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: normal;
  margin: 0;
}

.industry-cs-slider-home .slide .text .service-list {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: #666;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: normal;
  list-style-type: none;
  margin: 000;
}

.industry-cs-slider-home .slide .text .service-list li {
  position: relative;
}

.industry-cs-slider-home .slide .text .service-list li:not(:last-child) {
  padding-right: 20px;
}

.industry-cs-slider-home .slide .text .service-list li:not(:last-child)::after {
  display: block;
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.industry-cs-slider-home .slide .text .list {
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.industry-cs-slider-home .slide .text .list h2 {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: normal;
  margin: 0 0 10px;
}

.industry-cs-slider-home .slide .text .list li {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  display: inline-block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(33.33% - 20px);
  flex: 0 0 calc(33.33% - 20px);
}

.industry-cs-slider-home .owl-dots {
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 26px;
  line-height: 1.6;
  display: flex;
  width: calc(100% - 170px);
  background: #f4e1ee;
}

.industry-cs-slider-home .owl-dots button.owl-dot {
  width: 100%;
  height: 5px;
  display: inline-block;
  background: transparent;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  margin: 0;
  border-radius: 4px;
}

.industry-cs-slider-home .owl-dots button.owl-dot.active {
  background-color: #e54771;
  background-image: linear-gradient(93deg, #5f48d8, #e54771);
  opacity: 1;
}

.industry-cs-slider-home .owl-nav {
  display: flex;
  position: absolute;
  gap: 10px;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: transparent !important;
}

.industry-cs-slider-home .owl-nav button.owl-prev,
.industry-cs-slider-home .owl-nav button.owl-next {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #f9fafa !important;
  border: 1px solid #d5d8dc;
  position: relative;
  cursor: pointer;
}

.industry-cs-slider-home .owl-nav button.owl-prev span,
.industry-cs-slider-home .owl-nav button.owl-next span {
  display: none !important;
}

.industry-cs-slider-home .owl-nav button.owl-prev::after,
.industry-cs-slider-home .owl-nav button.owl-next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 46%;
  -webkit-transform: rotate(135deg) translate(-50%, -50%);
  -ms-transform: rotate(135deg) translate(-50%, -50%);
  transform: rotate(135deg) translate(-50%, -50%);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.industry-cs-slider-home .owl-nav button.owl-prev::after {
  -webkit-transform: rotate(324deg) translate(-50%, -50%);
  -ms-transform: rotate(314deg) translate(-50%, -50%);
  transform: rotate(314deg) translate(-50%, -50%);
  left: 54%;
}

@media (max-width: 1200px) {
  .industry-cs-slider-home .slide .text .list h2 {
    font-size: 18px;
  }

  .industry-cs-slider-home .slide .text .list li {
    font-size: 12px;
  }

  .industry-cs-slider-home .slide .text h2 {
    font-size: 20px;
  }

  .industry-cs-slider-home .slide .media {
    padding-top: 44%;
  }
}

@media (max-width: 991px) {
  .industry-cs-slider-home .slide {
    flex-direction: column;
  }

  .industry-cs-slider-home .slide .media {
    padding-top: 56%;
  }

  .industry-cs-slider-home .slide .text .service-list {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .industry-cs-slider-home .slide .media {
    padding-top: 76%;
  }
}

@media (max-width: 575px) {
  .industry-cs-slider-home .owl-nav button.owl-prev,
  .industry-cs-slider-home .owl-nav button.owl-next {
    width: 54px;
    height: 54px;
  }

  .industry-cs-slider-home .owl-dots {
    bottom: 23px;
    width: calc(100% - 130px);
  }
}

/* Proudly Featured on */
.proudly-featured-on {
  background: #f7f8fc;
  padding: 60px 0;
}

.proudly-featured-on h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #030303;
}

.featured-on-card-row,
.featured-on-card-row .row-1,
.featured-on-card-row .row-2,
.featured-on-card-row .row-2 .col-left,
.featured-on-card-row .row-2 .col-right,
.featured-on-card-row .row-2 .col-right .r1,
.featured-on-card-row .row-2 .col-right .r2,
.featured-on-card-row .row-2 .col-right .r3 {
  display: flex;
}

.featured-on-card-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.featured-on-card-row .img-box {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  width: 100%;
  border: 1px solid #eff0f6;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.featured-on-card-row .img-box::after {
  content: "";
  display: block;
  padding-bottom: 64%;
}

.featured-on-card-row .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

.featured-on-card-row,
.featured-on-card-row .row-1,
.featured-on-card-row .row-2,
.featured-on-card-row .row-2 .col-left,
.featured-on-card-row .row-2 .col-right,
.featured-on-card-row .row-2 .col-right .r1,
.featured-on-card-row .row-2 .col-right .r2,
.featured-on-card-row .row-2 .col-right .r3 {
  gap: 20px;
}

.featured-on-card-row .row-2 .col-left {
  flex-direction: column;
  flex: 1 0 calc(40% - 10px);
}

.featured-on-card-row .row-2 .col-right {
  flex: 1 0 calc(60% - 10px);
  flex-direction: column;
}

.featured-on-card-row .row-2 .col-right .img-box {
  flex: 0 0 calc(33.33% - 20px);
}

.featured-on-card-row .row-1 .img-box:nth-child(1),
.featured-on-card-row .row-1 .img-box:nth-child(2) {
  flex: 1 0 calc(30% - 20px);
}

.featured-on-card-row .row-1 .img-box:nth-child(3),
.featured-on-card-row .row-1 .img-box:nth-child(4) {
  flex: 1 0 calc(20% - 20px);
  margin-bottom: 20px;
}

.featured-on-card-row .row-2 .col-right .img-box:nth-child(1),
.featured-on-card-row .row-2 .col-right .img-box:nth-child(2) {
  flex: 0 0 calc(50% - 20px);
}

.featured-on-card-row .img-box.green {
  background-color: #ebf5f8;
}

.featured-on-card-row .img-box.purple {
  background-color: #f2edff;
}

.featured-on-card-row .img-box.dark-grey {
  background-color: #eff0f6;
}

.featured-on-card-row .img-box.grey {
  background-color: #e9effd;
}

.featured-on-card-row .row-2 .col-right .img-box:nth-child(1)::after,
.featured-on-card-row .row-2 .col-right .img-box:nth-child(2)::after {
  padding-bottom: 40%;
}

.featured-on-card-row .row-2 .col-right .r1 .img-box:nth-child(2) {
  margin-top: -20px;
}

.featured-on-card-row .row-2 .col-right .r1 .img-box {
  flex: 0 0 calc(50% - 10px);
}

.featured-on-card-row .row-2 .col-right .r2 .img-box:nth-child(1) {
  flex: 0 0 calc(30% - 13.33px);
  margin-bottom: -20px;
}

.featured-on-card-row .row-2 .col-right .r2 .img-box:nth-child(2) {
  margin-bottom: 20px;
  flex: 0 0 calc(45% - 13.33px);
}

.featured-on-card-row .row-2 .col-right .r2 .img-box:nth-child(3) {
  flex: 0 0 calc(25% - 13.33px);
  margin-bottom: -20px;
}

.featured-on-card-row .row-2 .col-left .img-box:nth-child(2)::after {
  padding-bottom: 30%;
}

.featured-on-card-row .col-right .r3 .img-box:nth-child(1) {
  flex: 0 0 calc(50% - 10px);
  margin-top: 20px;
}

.featured-on-card-row .col-right .r3 .img-box:nth-child(2) {
  flex: 0 0 calc(25% - 10px);
}

@media (max-width: 575px) {
  .featured-on-card-row .img-box {
    margin: 0 !important;
  }
}

/* featured awards */
.featured-awards {
  padding: 60px 0;
  background: #171624;
}
.featured-awards .featured-awards-header {
  max-width: 970px;
}
.featured-awards .featured-awards-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #dd1bbf;
  margin-bottom: 24px;
}

.featured-awards .featured-awards-header h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #ffffff;
}

.featured-award-slider.owl-carousel .owl-stage {
  display: flex;
  padding-left: 0 !important;
}

.featured-award-slider .slide {
  background: transparent linear-gradient(180deg, #25364967 0%, #283c50 100%) 0%
    0% no-repeat padding-box;
  padding: 30px;
  height: 100%;
  border-radius: 12px;
  width: 100%;
  font-family: "Poppins", Sans-serif;
}

.featured-award-slider .slide .image {
  position: relative;
  padding-left: 30px;
  margin-bottom: 30px;
}

.featured-award-slider .slide .circle {
  background: rgb(255 255 255 / 7%);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.featured-award-slider .slide .small-circle {
  background: rgb(34 34 34 / 52%);
  border-radius: 50%;
  width: 90px;
  height: 20px;
  position: absolute;
  left: 40px;
  bottom: -6px;
  -webkit-filter: blur(6px);
}

.featured-award-slider .slide img {
  width: 114px;
  height: 124px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.featured-award-slider .slide .text h2 {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
  margin: 0 0 14px;
}

.featured-award-slider .slide .text h2 * {
  color: inherit !important;
  font-weight: inherit !important;
  font-size: inherit;
  line-height: inherit;
}

.featured-award-slider .slide .text p {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  margin: 0;
}

.featured-award-slider .owl-nav {
  display: flex;
  gap: 12px;
  padding: 0;
  position: absolute;
  top: -130px;
  right: 0;
}

.featured-award-slider .owl-nav button.owl-prev,
.featured-award-slider .owl-nav button.owl-next {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #171624 !important;
  border: 1px solid #d4deea;
  position: relative;
  cursor: pointer;
}

.featured-award-slider .owl-nav button.owl-prev span,
.featured-award-slider .owl-nav button.owl-next span {
  display: none !important;
}

.featured-award-slider .owl-nav button.owl-prev::after,
.featured-award-slider .owl-nav button.owl-next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #d4deea;
  border-left: 1px solid #d4deea;
  position: absolute;
  top: 50%;
  left: 46%;
  -webkit-transform: rotate(135deg) translate(-50%, -50%);
  -ms-transform: rotate(135deg) translate(-50%, -50%);
  transform: rotate(135deg) translate(-50%, -50%);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.featured-award-slider .owl-nav button.owl-prev::after {
  -webkit-transform: rotate(324deg) translate(-50%, -50%);
  -ms-transform: rotate(314deg) translate(-50%, -50%);
  transform: rotate(314deg) translate(-50%, -50%);
  left: 54%;
}

.featured-award-slider .slide.conejo img {
  width: 220px;
}
@media (max-width: 991px) {
  .featured-award-slider {
    padding-top: 100px;
  }
  .featured-award-slider .owl-nav {
    top: 0 !important;
  }
}
@media (max-width: 767px) {
  .featured-award-slider .slide {
    max-width: 100%;
  }
}

.hero-video-section {
  position: relative;
  top: 0;
  left: 0;
  width: 80%;
  aspect-ratio: 16/9;
  transition: all 0.2s linear;
  z-index: 10;
}

.hero-video-section .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  margin-top: -100px;
}

/* our partners network */
.our-partners-network {
  padding: 60px 0;
  background: #f7f8fc;
  background: linear-gradient(180deg, #ffffff 0%, #eeeffb 100%) 0% 0% no-repeat
    padding-box;
}

.our-partners-network .our-partners-network-header {
  max-width: 500px;
}

.our-partners-network .our-partners-network-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #dd1bbf;
  margin-bottom: 24px;
}

.our-partners-network .our-partners-network-header h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #222222;
  margin-bottom: 0;
}

.our-partner-network-slider .slide-img {
  position: relative;
  width: 130px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-partner-network-slider .slide-img img {
  width: 100%;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.our-partner-network-slider .owl-item.active.center .slide-img img {
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.our-partner-network-slider-text .slide-text {
  padding: 50px 70px 50px 50px;
  border-radius: 20px;
  font-family: "Poppins", Sans-serif;
  background: #fff;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  text-align: center;
  position: relative;
}

.our-partner-network-slider-text .slide-text::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(https://tamediacdn.techaheadcorp.com/wp-content/uploads/2024/04/30102812/quotes567.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 45px;
  right: 40px;
}

.our-partner-network-slider-text .slide-text {
  display: none;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.our-partner-network-slider-text .slide-text.active {
  display: block;
  transform: scale(1);
  opacity: 1;
}

/* why choose techahead */
.why-choose-techahead {
  padding: 60px 0;
  background: #0b020e
    url("https://tamediacdn.techaheadcorp.com/wp-content/uploads/2025/06/24124228/Ellipse-12-1.svg")
    no-repeat -60% -40px / 68% auto;
}

.why-choose-techahead .why-head .highlight {
  background: linear-gradient(94deg, #5f48d8 0%, #e54771 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  display: inline-block;
}

.why-choose-techahead .why-head h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #dd1bbf;
  margin-bottom: 24px;
}

.why-choose-techahead .why-head p {
  font-family: "Poppins", Sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #ffffff;
  margin-bottom: 40px;
}

.why-choose-techahead .why-cols {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 80px;
}

.why-choose-techahead .why-list {
  display: flex;
  flex-direction: column;
  gap: 54px;
  counter-reset: whycounter;
}

.why-choose-techahead .why-list li {
  position: relative;
  padding-left: 44px;
}

.why-choose-techahead .why-list li::before {
  counter-increment: whycounter;
  content: "0" counter(whycounter);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.why-choose-techahead .why-list h4 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #ffffff;
  margin-bottom: 24px;
}

.why-choose-techahead .why-list p {
  font-family: "Poppins", Sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
  color: #ffffff;
  margin-bottom: 0;
}

.why-choose-techahead .why-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 120px;
  z-index: 4;
}
@media (max-width: 767px) {
  .why-choose-techahead .why-cols {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

/* what we do */
.what-we-do {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff00 0%, #eeeffb 100%);
}

.what-we-do .what-we-do-header {
  width: calc(100% - 160px);
}

.what-we-do .what-we-do-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #dd1bbf;
  margin-bottom: 24px;
}

.what-we-do .what-we-do-header h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #000000;
  margin-bottom: 24px;
}

.what-we-do .what-we-do-header p {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #000000;
}

.what-we-do-slider-wrapper {
  overflow: visible;
}

.what-we-do-slider {
  padding-top: 0;
}

.what-we-do-slider .owl-nav {
  top: -130px;
  left: auto;
}

.what-we-do-slider-wrapper .progress-bar-wrapper {
  overflow-x: hidden;
  top: 56px;
  left: 0;
}

.what-we-do-slider .slide h2 {
  margin-bottom: 60px;
}

.what-we-do-slider .slide {
  padding: 0;
}

.what-we-do-slider .slide ul {
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.what-we-do-slider .slide ul.is-collapsed {
  max-height: 252px;
}

.what-we-do-slider .view-more-btn {
  display: inline-block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #222;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: normal;
  display: inline-block;
  white-space: nowrap;
  opacity: 1;
  visibility: visible;
}

.what-we-do-slider .slide ul:not(.is-collapsed) + .view-more-btn {
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .what-we-do .what-we-do-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .what-we-do .what-we-do-header {
    width: 100%;
  }

  .what-we-do-slider .owl-nav {
    top: 0;
  }

  .what-we-do-slider .owl-nav button.owl-prev,
  .what-we-do-slider .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }

  .what-we-do-slider .owl-nav button.owl-prev::after,
  .what-we-do-slider .owl-nav button.owl-next::after {
    width: 7px;
    height: 7px;
  }
}

/* blog-insights */
.blog-insights {
  padding: 60px 0;
  background: #fff;
}

.blog-insights .blog-insights-header {
  max-width: 560px;
  text-align: center;
  margin: 0 auto;
}

.blog-insights .blog-insights-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #dd1bbf;
  margin-bottom: 24px;
}

.blog-insights .blog-insights-header h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #222222;
  margin-bottom: 24px;
}

.blog-insights .btn {
  background-color: transparent;
  font-family: "Poppins", Sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: normal;
  color: #ffffff;
  background-image: linear-gradient(90deg, #c32598 0%, #7a12c8 100%);
  border-radius: 8px;
  padding: 12px 30px 12px 30px;
}

/*  */
.hire-blog-section .blog-card,
.hire-blog-section .blog-card .blog-desc,
.hire-blog-section .blog-card .blog-author {
  display: flex;
  font-family: "Poppins", Sans-serif;
}

.hire-blog-section .blog-card,
.hire-blog-section .blog-card .blog-author {
  align-items: center;
}

.hire-blog-section .blog-card {
  justify-content: center;
  gap: 60px;
  padding: 20px 50px 20px 70px;
  position: relative;
  background: #fff;
  transition: all 0.3s ease;
}

.hire-blog-section .blog-card .blog-desc .blog-details {
  max-width: 400px;
}

.hire-blog-section .blog-card .blog-desc {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hire-blog-section .blog-card .title {
  margin: 0 0 14px;
}

.hire-blog-section .blog-card .title a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #222;
  line-height: 1.4;
  letter-spacing: normal;
  display: block;
  text-decoration: none;
}

.hire-blog-section .blog-card .date-view {
  font-size: 0.9rem;
  font-weight: 400;
  color: #6e6e6e;
  line-height: 1.2;
  margin: 0 0 20px;
  text-transform: capitalize;
}

.hire-blog-section .blog-card .blog-author {
  gap: 10px;
}

.hire-blog-section .blog-card .blog-author .name {
  background-color: #f4f7f8;
  border-radius: 40px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: #222;
  line-height: 18px;
}

.hire-blog-section .blog-card .blog-author .image {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #f4f7f8;
}

.hire-blog-section .blog-card .read-more {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.hire-blog-section .blog-card .read-more.btn-with-arrow img {
  -webkit-filter: invert(1);
  filter: invert(1);
  width: 8px !important;
}

.hire-blog-section .blog-card .thumbnail-img {
  max-width: 278px;
  width: 100%;
  height: 190px;
  flex: 0 0 auto;
}

.hire-blog-section .blog-card .thumbnail-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  object-fit: cover;
}

.hire-blog-section .blog-card:hover {
  background: #6596fd
    linear-gradient(293deg, #6596fd 40%, #cba8ff 100%, #a575ec 100%) 0% 0%
    no-repeat padding-box;
  transition: all 0.3s ease;
}

.hire-blog-section .blog-card:hover .title a,
.hire-blog-section .blog-card:hover .date-view {
  color: #fff;
}

.hire-blog-section .blog-card:hover .thumbnail-img img {
  margin-top: -70px;
  transform: scale(1.2);
  transition: all 0.3s ease;
}

.hire-blog-section .blog-card:hover .read-more {
  background-color: #fff;
}

.hire-blog-section .blog-card:hover .read-more.btn-with-arrow img {
  -webkit-filter: invert(0);
  filter: invert(0);
}

@media (max-width: 767px) {
  .hire-blog-section .blog-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    gap: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .hire-blog-section .blog-card:hover {
    background: #fff;
    background: #fff;
  }

  .hire-blog-section .blog-card:hover .title a,
  .hire-blog-section .blog-card:hover .date-view {
    color: #222;
  }

  .hire-blog-section .blog-card:hover .read-more {
    background-color: #222;
  }

  .hire-blog-section .blog-card:hover .read-more.btn-with-arrow img {
    -webkit-filter: invert(1);
    filter: invert(1);
  }

  .hire-blog-section .blog-card:not(:last-child) {
    margin-bottom: 40px;
  }

  .hire-blog-section .blog-card:hover .thumbnail-img img {
    margin-top: 0;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .hire-blog-section .blog-card .thumbnail-img {
    height: auto;
    max-width: 100%;
  }

  .hire-blog-section .blog-card .read-more {
    width: 40px;
    height: 40px;
  }

  .hire-blog-section .blog-card .read-more.btn-with-arrow img {
    width: 6px !important;
  }
}

.hire-blog-section .hire-blog-section {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

/* additonal-info */
.additional-info {
  padding: 60px 0;
  background: linear-gradient(180deg, #171623 0%, #283c50 100%);
}

.additional-info .additional-info-cols {
  display: flex;
  gap: 100px;
}
.additional-info-cols .description {
  max-width: 1000px;
}
.additional-info .lottie-wrap {
  width: 280px;
  height: 180px;
  flex-shrink: 0;
}

.additional-info .lottie-wrap .lottie-player {
  width: 100%;
  height: 100%;
  display: block;
}

.additional-info .additional-info-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #dd1bbf;
  margin-bottom: 24px;
}

.additional-info .additional-info-header h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #ffffff;
  max-width: 800px;
}

.additional-info .additional-info-header p {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #ffffff;
}

.top-10-title-collapse.service * {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
}

.top-10-title-collapse.service h2,
.top-10-title-collapse.service h2 a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.top-10-title-collapse.service h3,
.top-10-title-collapse.service h3 a,
.top-10-title-collapse.service h4,
.top-10-title-collapse.service h4 a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.top-10-title-collapse.service h2 a,
.top-10-title-collapse.service h3 a,
.top-10-title-collapse.service h4 a {
  text-decoration: none;
}

.top-10-title-collapse.service strong {
  font-weight: bold;
}

.top-10-title-collapse.service a {
  text-decoration: underline;
}

.top-10-title-collapse.service .content {
  margin-top: 18px;
}

.top-10-title-collapse.service .collapsebtn {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 0;
  color: #b986ff;
  background: transparent;
  font-size: 1.1rem;
  padding: 0;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
  margin-top: 20px;
}

.top-10-title-collapse.service .collapsebtn.common-arrow-btn .arrow {
  border-color: #b986ff;
}

.top-10-title-collapse.service .collapsebtn.common-arrow-btn .arrow::after {
  background: #b986ff;
}

.top-10-title-collapse.service .collapsebtn.active span {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

@media (max-width: 991px) {
  .additional-info .additional-info-cols {
    gap: 24px;
  }
}

@media (max-width: 575px) {
  .additional-info {
    padding-top: 24px;
  }

  .additional-info .additional-info-cols {
    flex-direction: column-reverse;
  }
}

.top-10-title-collapse.service * {
  color: #fff;
  font-family: "Poppins", Sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: normal;
}

.top-10-title-collapse.service h2,
.top-10-title-collapse.service h2 a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.top-10-title-collapse.service h3,
.top-10-title-collapse.service h3 a,
.top-10-title-collapse.service h4,
.top-10-title-collapse.service h4 a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.top-10-title-collapse.service h2 a,
.top-10-title-collapse.service h3 a,
.top-10-title-collapse.service h4 a {
  text-decoration: none;
}

.top-10-title-collapse.service strong {
  font-weight: bold;
}

.top-10-title-collapse.service a {
  text-decoration: underline;
}

.top-10-title-collapse.service .content {
  margin-top: 18px;
}

.top-10-title-collapse.service .collapsebtn {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 0;
  color: #dd1bbf;
  background: transparent;
  font-size: 1.1rem;
  padding: 0;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: normal;
  margin-top: 20px;
  text-transform: uppercase;
}

.top-10-title-collapse.service .collapsebtn span {
  color: #dd1bbf;
  font-weight: 600;
  display: inline-block;
}

.top-10-title-collapse.service .collapsebtn.common-arrow-btn .arrow::after {
  background: #dd1bbf;
}

.top-10-title-collapse.service .collapsebtn.active span {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/* FAQ */
.faqs {
  padding: 60px 0;
  background: #171624;
}

.faqs .faqs-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  text-transform: capitalize;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #ffffff;
  margin-bottom: 0;
}

.cs-tab-wrapper {
  display: flex;
  gap: 120px;
  font-family: "Poppins", Sans-serif;
}

.cs-tab-wrapper .tabs {
  margin: 0;
  padding: 0;
  display: flex;
  list-style-type: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 0 0 calc(20% - 100px);
}

.cs-tab-wrapper .cs-tab-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cs-tab-wrapper .tab-link {
  padding: 15px;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  transition: all 0.5s ease;
  font-size: 14px;
  letter-spacing: normal;
  border-radius: 8px;
  min-width: 220px;
  line-height: 1.6;
}

.cs-tab-wrapper .tab-link.active {
  background-color: rgb(255 255 255 / 11%);
  font-weight: 600;
}

.cs-tab-wrapper .tab-content {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.5s ease 1 forwards;
}

.cs-tab-wrapper .tab-content.active {
  display: block;
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.cs-tab-wrapper .cs-tab-content h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  letter-spacing: normal;
  margin: 0 0 10px;
}

.cs-tab-wrapper .cs-accordion .faq > h2 {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 18px;
  letter-spacing: normal;
  line-height: 1.6;
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgb(255 255 255 / 36%);
  transition: all 0.2s linear;
  cursor: pointer;
  margin: 0;
}

.cs-tab-wrapper .cs-accordion .faq > h2 .icon {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 8%);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cs-tab-wrapper .cs-accordion .faq > h2 .icon::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: rotate(224deg) translate(-50%, -50%);
  transform-origin: left top;
  transition: all 0.3s ease;
}

.cs-tab-wrapper .cs-accordion .faq > h2.active .icon::after {
  top: 55%;
  transform: rotate(44deg) translate(-50%, -50%);
}

.cs-tab-wrapper .cs-accordion .faq .content {
  border-bottom: 1px solid rgb(255 255 255 / 36%);
  display: none;
}

.cs-tab-wrapper .cs-accordion .faq .content p {
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: normal;
  margin: 0;
  padding: 20px 0;
}

@media (max-width: 991px) {
  .cs-tab-wrapper {
    gap: 40px;
  }

  .cs-tab-wrapper .cs-accordion .faq > h2 {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .cs-tab-wrapper {
    flex-direction: column;
  }

  .cs-tab-wrapper .cs-accordion .faq > h2,
  .cs-tab-wrapper .cs-accordion .faq .content p {
    font-size: 14px;
  }

  .cs-tab-wrapper .cs-tab-content {
    padding: 0 15px;
  }
}

/* get-in-touch */
.get-in-touch {
  padding: 114px 0 140px;
  position: relative;
  background: #fff;
}

.get-in-touch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://tamediacdn.techaheadcorp.com/wp-content/uploads/2024/08/29052550/shape.webp);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  opacity: 0.1;
  pointer-events: none;
}

.get-in-touch-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.get-in-touch-content h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #222222;
  margin-bottom: 30px;
}

.get-in-touch-content h3 .highlight {
  background: linear-gradient(285deg, #7411cc 0%, #e42e84 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  display: inline-block;
}

.get-in-touch-content h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 26px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #222222;
  margin-bottom: 60px;
}

.get-in-touch .get-in-touch-cta {
  display: inline-block;
  padding: 10px 24px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: capitalize;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(285deg, #7411cc 0%, #e42e84 100%);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.problems-we-solve {
  margin-top: -100px;
  padding: 60px 0;
  background: #171624;
}

.problems-we-solve .problems-we-solve-header {
  margin-bottom: 60px;
}

.problems-we-solve .problems-we-solve-header h2 {
  color: #dd1bbf;
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  margin-bottom: 24px;
}

.problems-we-solve .problems-we-solve-header .first-para {
  max-width: 820px;
}

.problems-we-solve .problems-we-solve-header .second-para {
  max-width: 790px;
}

.problems-we-solve .problems-we-solve-header p {
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}

.problems-we-solve-slider.owl-carousel:not(.owl-loaded) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problems-we-solve-slider.owl-carousel:not(.owl-loaded) > *:nth-child(n + 4) {
  display: none;
}

.problems-we-solve-slider.owl-carousel .owl-stage {
  display: flex;
}

.problems-we-solve-slider .card {
  background: linear-gradient(180deg, #1e2432 0%, #2b3b4c 100%);
  border-radius: 20px;
  padding: 24px 0 24px 24px;
  transition: all 0.3s ease;
}

.problems-we-solve-slider .slide,
.problems-we-solve-slider .card {
  height: 100%;
}

.problems-we-solve-slider .card:hover {
  background: linear-gradient(180deg, #221828 0%, #3e1256 100%);
}

.problems-we-solve-slider .card .card-header > img {
  width: 48px;
  height: 48px;
  flex-basis: 0;
  object-fit: contain;
}

.problems-we-solve-slider .card-header h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0;
  max-width: 300px;
}

.problems-we-solve-slider .card-header a {
  color: inherit;
  font-weight: inherit;
  display: inline-block;
}

.problems-we-solve-slider .card-header {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid #ffffff24;
  padding-bottom: 20px;
  padding-right: 24px;
  margin-bottom: 20px;
  max-width: 370px;
}

.problems-we-solve-slider .card-body {
  padding-right: 24px;
}

.problems-we-solve-slider .card-body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 20px;
}

.problems-we-solve-slider {
  padding-bottom: 100px;
}

.problems-we-solve-slider .owl-nav {
  display: flex;
  gap: 12px;
  padding: 0;
  position: absolute;
  bottom: 0;
  right: 0;
}

.problems-we-solve-slider .owl-nav button.owl-prev,
.problems-we-solve-slider .owl-nav button.owl-next {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background: #2b3a4b !important;
  border: 1px solid #fff;
  position: relative;
  cursor: pointer;
  opacity: 0.6;
}

.problems-we-solve-slider .owl-nav button.owl-prev span,
.problems-we-solve-slider .owl-nav button.owl-next span {
  display: none !important;
}

.problems-we-solve-slider .owl-nav button.owl-prev::after,
.problems-we-solve-slider .owl-nav button.owl-next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 46%;
  -webkit-transform: rotate(135deg) translate(-50%, -50%);
  -ms-transform: rotate(135deg) translate(-50%, -50%);
  transform: rotate(135deg) translate(-50%, -50%);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.problems-we-solve-slider .owl-nav button.owl-prev::after {
  -webkit-transform: rotate(324deg) translate(-50%, -50%);
  -ms-transform: rotate(314deg) translate(-50%, -50%);
  transform: rotate(314deg) translate(-50%, -50%);
  left: 54%;
}

.problems-we-solve-slider .owl-nav {
  position: absolute;
  bottom: 14px;
  right: 10px;
  display: flex;
  gap: 12px;
}

.problems-we-solve-slider .owl-nav button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff !important;
  border: 1px solid #fff !important;
  font-size: 22px !important;
  color: #000 !important;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  font-family: "Open Sans" !important;
  line-height: 48px !important;
}

.problems-we-solve-slider .owl-dots {
  text-align: center;
  position: absolute;
  left: 8px;
  bottom: 38px;
  line-height: 1.6;
  display: flex;
  width: calc(100% - 170px);
  border-radius: 4px;
  background: rgb(255 255 255 / 10%);
}

.problems-we-solve-slider .owl-dots button.owl-dot {
  width: 100%;
  height: 4px;
  display: inline-block;
  background: transparent;
  margin: 0 0.2rem;
  transition: all 0.3s ease;
  margin: 0;
  border-radius: 4px;
}

.problems-we-solve-slider .owl-dots button.owl-dot.active {
  background: linear-gradient(126.62deg, #5f48d8 2.41%, #e54771 87.72%);
  opacity: 1;
}

@media (max-width: 767px) {
  .problems-we-solve .problems-we-solve-header h2 {
    font-size: 16px;
  }
}

.core-capabilities {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff 0%, #eff0fa 100%);
}

.core-capabilities .core-capabilities-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.core-capabilities .core-capabilities-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #030303;
  margin-bottom: 24px;
}

.core-capabilities .core-capabilities-header p {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #000;
  margin-bottom: 0;
}

.core-capabilities-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.core-capabilities .card {
  background: #fff;
  border: 1px solid #e3d3ee;
  border-radius: 30px;
  padding: 30px;
  min-height: 240px;
  transition: all 0.3s ease;
}

.core-capabilities .card h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #000;
  max-width: 300px;
}

.core-capabilities .card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.9;
  color: #000;
  margin-bottom: 0;
}

.core-capabilities .card a {
  color: inherit;
  font-weight: inherit;
  display: inline;
}

.core-capabilities .card:hover {
  background: linear-gradient(180deg, #b422a2 0%, #8616c0 100%);
}

.core-capabilities .card:hover h3,
.core-capabilities .card:hover p {
  color: #fff;
}

@media (max-width: 991px) {
  .core-capabilities-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .core-capabilities-cards {
    grid-template-columns: 1fr;
  }

  .core-capabilities .core-capabilities-header h2 {
    font-size: 16px;
  }
}

/* industries-we-focus */
.industries-we-focus {
  padding: 60px 0;
  background: #171624;
}

.industries-we-focus-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.industries-we-focus .industries-we-focus-header h2 {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-style: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #dd1bbf;
  margin-bottom: 24px;
}

.industries-we-focus .industries-we-focus-header h3 {
  font-family: "Poppins", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  color: #ffffff;
  margin-bottom: 24px;
}

.industries-we-focus .industries-we-focus-header p {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: normal;
  color: #ffffff;
}

.industries-we-focus .industries-we-focus-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.industries-we-focus .industries-item a {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 46px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  border-radius: 100px;
  border: 1px solid rgba(202, 69, 150, 0.42);
  padding: 3px 24px 3px 3px;
}

.industries-we-focus .industries-item a:hover {
  background: #2a2936;
}

.industries-we-focus .industries-item-text {
  display: inline-block;
}

.industries-we-focus .industries-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.industries-we-focus .industries-item-icon > svg {
  width: 100%;
  height: 100%;
}

.industries-we-focus .industries-item a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
