/* Mobile menu: rotate dropdown icon when open */
.q3-mobile-item.is-open .q3-mob-toggle i {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.q3-mob-toggle i {
  transition: transform 0.3s;
}

.reveal-services-btn {
  border: 0;
}

/* ============================================================
   Q3 Technologies — Custom Styles
   Built on top of Bootstrap 5.3
   ============================================================ */
img {
  max-width: 100%;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
}

/* custome button */
.hidden-service {
  display: none !important;
}



.primary_btn {
  color: var(--white);
  font-size: var(--fs-16);
  border-radius: var(--radius-pill);
  font-weight: 400;
  padding: var(--space-0);
  text-transform: capitalize;
  display: inline-block;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  position: relative;
  padding: var(--space-10) var(--space-12) var(--space-10) var(--space-20);
  display: flex;
  gap: var(--space-5);
  align-items: center;
  justify-content: center;
  width: max-content;
  z-index: 12;
}

.customeGr_btn {
  background-image: var(--brand-gradient);
}

.customeGr_btn::before {
  position: absolute;
  content: "";
  height: calc(100% - var(--space-2));
  width: calc(100% - var(--space-4));
  background-color: var(--black);
  z-index: 0;
  top: var(--space-1);
  border-radius: var(--radius-pill);
  left: var(--space-2);
}

.primary_btn .arrow {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 70%;
  border-radius: var(--radius-round);
  width: var(--space-28);
  height: var(--space-28);
  background-image: url("../images/gradient-arrow.svg");
  cursor: pointer;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.primary_btn:hover .arrow {
  color: #fff;
  background-image: url("../images/arrow-right_h.png");
  background-color: #fff;
  background-position: center center;
  background-size: 55%;
  animation: arrowbotmBannewg 0.5s;
}

.primary_btn .btn-text {
  display: inline-block;
  color: var(--white);
  position: relative;
  z-index: 1;
  font-size: var(--fs-16);
  font-weight: 500;
}

@keyframes arrowbotmBannewg {
  0% {
    background-position: left -100% bottom -100%;
    background-size: 0%;
  }

  100% {
    background-position: center center;
    background-size: 55%;
  }
}

/* custome button */
body {
  background: var(--bg-0);
  color: var(--text-theme-primery);
  font-family: var(--font-family-base) !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--theme-color);
  color: var(--white);
}

.section {
  position: relative;
}

a {
  color: var(--text-theme-primery);
  text-decoration: none;
  transition: color 0.15s ease;
}

.section_title {
  font-size: var(--fs-40);
  line-height: 130%;
  color: var(--text-theme-primery);
  font-weight: 500;
}

/* ============================================================
   Common Components (Button / Title / Eyebrow) + Responsive
   ============================================================ */
@media (max-width: 1200px) {
  .section_title {
    font-size: var(--fs-28);
  }
}

@media (max-width: 768px) {
  .primary_btn {
    font-size: var(--fs-14);
    padding: var(--space-8) var(--space-12) var(--space-8) var(--space-20);
  }

  .primary_btn .btn-text {
    font-size: var(--fs-14);
  }

  .primary_btn .arrow {
    width: var(--space-24);
    height: var(--space-24);
  }

  .section_title {
    font-size: var(--fs-24);
  }
}

/* Subtle ambient gradient glow on the page */
body {
  background: var(--body-bg);
}

main {
  position: relative;
  z-index: 1;
}

/* ------------------------ main Hero banner --------------------------------*/
.marquee-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: #181b2599;
  padding: 12px 0;
  position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 18s linear infinite;
  gap: 20px;
  white-space: nowrap;
  will-change: transform;
}

.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.main_heroMarquee {
  position: absolute;
  bottom: 0;
  width: calc(100vw - 30px);
  left: 15px;
}

.marquee-item {
  background: -webkit-linear-gradient(90deg, #ffffff 25%, #ababab 79.17%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--fs-16);
  display: flex;
  align-items: center;
  gap: var(--space-8);
  font-weight: 600;
}

.star {
  color: var(--white);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.main_heroSection {
  position: relative;
  overflow: hidden;
  margin: 10px 10px 0 10px;
  border-radius: 14px;
}

.main_heroWrapper {
  position: relative;
  overflow: hidden;
  padding: var(--space-100) var(--space-0) var(--space-60);
  display: flex;
  align-items: center;
  min-height: 100vh;
}

/* 1500px and above */
@media screen and (min-width: 1550px) {
  .main_heroWrapper {
    min-height: auto;
    padding: var(--space-200) var(--space-0) var(--space-100);
  }
}

.main_heroMedia {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #000 url("../images/newheroNammer.webp") center center / cover no-repeat;
}

.main_heroVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s ease;
}

.main_heroMedia.is-video-active .main_heroVideo {
  opacity: 1;
}

.main_heroMedia.is-video-active .main_herobanner {
  opacity: 0;
}

.mainHero_btnWrap {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.mainheroTitle {
  font-size: var(--fs-44);
  font-weight: 600;
  line-height: 128%;
  margin: var(--space-20) var(--space-0) var(--space-16) var(--space-0);
  color: var(--white);
}

.news_itemLogoWrap {
  display: inline-block;
}

.mainHero_news {
  display: flex;
  align-items: center;
  gap: 32px;
}

.mainTag {
  background: #181b2599;
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-20);
  font-size: var(--fs-16);
  font-weight: 400;
  color: var(--white);
  backdrop-filter: blur(23px);
  box-shadow:
    -1px -1px 2px -1px #ffffff91,
    inset 0px -2px 2px -2px #ffffff91;
}

.mainhero_row {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.mainhero_content {
  max-width: 755px;
  width: 100%;
}

.mainheroContent {
  margin: var(--space-0);
  color: var(--white);
  font-size: var(--fs-20);
  line-height: 150%;
}

/* Enterprise Logo Carousel */
.trust_topHead {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 15px;
}

.trust_top {
  max-width: 200px;
  width: 100%;
  height: 2px;
}

.trust_top1 {
  background: linear-gradient(90deg, #000000 0%, rgba(255, 255, 255, 0.3) 100%);
}

.trust_top2 {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, #000000 100%);
}

.enterpriseLogo_owlSlider {
  max-width: 100%;
  position: relative;
}

.enterpriseLogo_owlSlider::after,
.enterpriseLogo_owlSlider::before {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 10;
  content: "";
  pointer-events: none;
}

.enterpriseLogo_owlSlider::after {
  left: 0;
  box-shadow: inset 38px 0 20px -20px var(--black);
}

.enterpriseLogo_owlSlider::before {
  right: 0;
  box-shadow: inset -47px 0 33px -20px var(--black);
}

.mainHero_enterpriseWrap {
  padding: var(--space-60) var(--space-0) var(--space-60);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.mainHero_enterpriseTitle {
  font-size: var(--fs-24);
  line-height: 126%;
  margin: var(--space-0);
  font-weight: 500;
  color: var(--text-theme-primery);
}

.enterpriseLogo_owlSlider .owl-stage {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}

.enterpriseLogo_item {
  padding: var(--space-1);
  border-radius: 14px;
  background: linear-gradient(299.2deg,
      var(--submenu-bg) 0%,
      #2a2a2a 62%,
      #4f4f4f 100%);
}

.enterpriseLogo_chip {
  height: 78px;
  border-radius: 14px;
  background: var(--theme-box);
  padding: var(--space-10) var(--space-24);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.enterpriseLogo_chip img {
  width: 90% !important;
  max-width: 104px;
  object-fit: contain;
  height: 100%;
}

@media screen and (max-width: 1400px) {
  .news_itemLogoWrap_Image {
    width: 106px;
    height: auto;
  }
}

@media screen and (max-width: 1299px) {
  .main_heroWrapper {
    min-height: auto;
    padding: 145px 0 60px;
  }
}

@media screen and (max-width: 1200px) {
  .news_itemLogoWrap_Image {
    width: 80px;
    height: auto;
  }

  .mainhero_row {
    margin-top: 20px;
  }

  .main_heroWrapper {
    min-height: auto;
    padding: 145px 0 60px;
  }
}

/* Responsive - Tablet */
@media screen and (max-width: 1200px) {
  .mainhero_content {
    max-width: 537px;
  }

  .mainheroTitle {
    font-size: var(--fs-32);
  }

  .main_heroSection {
    margin: 0px;
    border-radius: 0px;
  }
}

@media screen and (max-width: 1100px) {
  .q3-nav--main {
    margin-left: 24px;
  }
}

@media screen and (max-width: 992px) {
  .mainhero_row {
    gap: var(--space-20);
  }

  .mainheroContent {
    font-size: var(--fs-18);
  }

  .mainHero_news {
    gap: 15px;
  }

  .enterpriseLogo_owlSlider {
    width: 100%;
    max-width: 100%;
  }

  .mainHero_enterpriseTitle {
    font-size: var(--fs-18);
    min-width: max-content;
  }

  .mainHero_enterpriseWrap {
    padding-top: var(--space-40);
  }
}

/* Responsive - Mobile */
@media screen and (max-width: 768px) {
  .mainheroTitle {
    margin: var(--space-16) var(--space-0) var(--space-18) var(--space-0);
  }

  .mainhero_content {
    max-width: 100%;
    text-align: center;
  }

  .main_heroWrapper {
    padding: 90px 0 60px;
    min-height: auto;
  }

  .main_heroMarquee {
    width: 100%;
    left: 0;
  }

  .mainhero_row {
    align-items: center;
    flex-direction: column;
    gap: var(--space-30);
  }

  .news_itemLogoWrap_Image {
    width: auto;
  }

  .mainTag {
    font-size: var(--fs-12);
  }

  .mainHero_enterpriseWrap {
    flex-direction: column;
    gap: var(--space-30);
    padding: var(--space-40) var(--space-0);
    position: relative;
  }

  .mainHero_enterpriseWrap::before {
    content: "";
    background: #111111;
    position: absolute;
    top: 0;
    left: auto;
    width: 100vw;
    height: 100%;
    z-index: -1;
  }

  .enterpriseLogo_owlSlider::after,
  .enterpriseLogo_owlSlider::before {
    display: none;
  }

  .enterpriseLogo_chip {
    padding: var(--space-8) var(--space-16);
  }

  .enterpriseLogo_chip img {
    max-width: 120px;
  }

  .mainheroContent {
    font-size: var(--fs-14);
  }
}

/* Responsive - Small Mobile */
@media screen and (max-width: 576px) {
  .mainheroTitle {
    font-size: 26px;
  }

  .main_heroWrapper {
    padding: 130px 0 44px;
    min-height: auto;
  }

  .mainhero_row {
    margin-top: 32px;
  }

  .mainheroContent {
    font-size: var(--fs-14);
  }

  .mainHero_btnWrap {
    flex-direction: column;
    gap: var(--space-10);
    width: 100%;
  }

  .mainHero_btnWrap a {
    width: 100%;
  }

  .enterpriseLogo_chip {
    border-radius: 12px;
  }

  .main_heroSection {
    margin: 0;
    border-radius: 0 0 10px 10px;
  }
}

@media screen and (max-width: 320px) {
  .mainhero_content {
    padding: 0 17px;
  }

  .mainheroTitle {
    font-size: var(--fs-18);
  }

  .main_heroWrapper {
    padding: 100px 0 44px;
    min-height: auto;
  }
}

/* ------------------------ main Hero banner --------------------------------*/

/* new main home hero banner css end */

/* ------------------------ Blogs And Insights -------------------------*/
.blogsInsight_section {
  background: var(--submenu-bg);
  padding: var(--space-80) 0 var(--space-80);
  border-radius: 20px;
}

.blogsInsight_prev.disabled,
.blogsInsight_next.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.blogsInsight_wrapper {
  position: relative;
}

.blogsInsight_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-20);
  margin-bottom: var(--space-24);
}

.blogs_image {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 14px;
}

.blogsInsight_title {
  margin: 0;
}

.blogsInsight_actions {
  display: flex;
  align-items: center;
  gap: var(--space-12);
}

.blogsInsight_card {
  display: flex;
  flex-direction: column;
  padding: 0 4px;
}

.blogsInsight_thumb {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.blogsInsight_card:hover .blogsInsight_thumb {
  transform: scale(1.05);
}

.blogs_content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
}

.blogsInsight_tag {
  width: max-content;
  margin-top: var(--space-14);
  border-radius: var(--radius-pill);
  font-size: var(--fs-16);
  line-height: 1;
  display: inline-block;
  background: var(--label-border);
  overflow: hidden;
  position: relative;
  box-shadow:
    -1px -1px 2px -1px #ffffff91,
    inset 0px -2px 2px -2px #ffffff91;
}

.blogsInsight_tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--label-bg);
  z-index: 0;
}

.blogsInsight_tag span {
  padding: 8px 17px;
  border-radius: var(--radius-pill);
  position: relative;
  z-index: 1;
}

.blogsInsight_cardTitle {
  color: var(--text-theme-primery);
  font-size: var(--fs-20);
  line-height: 150%;
  font-weight: 500;
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height:95px;
}

.blogsInsight_authorRow {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blogsInsight_initials {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: #c0b7f6;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-14);
  font-weight: 500;
}

.blogsInsight_authorName {
  color: var(--text-theme-primery);
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 150%;
  white-space: nowrap;
}

.blogsInsight_dot {
  color: var(--text-color);
}

.tooltip-inner {
  font-family: var(--font-family-base);
  font-size: var(--fs-12);
  font-weight: 400;
  max-width: 250px;
  padding: 6px 15px;
}

.blogsInsight_authorRole {
  color: var(--text-color);
  font-size: var(--fs-14);
  line-height: 150%;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.blogsInsight_owlSlider .owl-stage {
  display: flex;
}

.blogsInsight_owlSlider .owl-item {
  display: flex;
}

.blogsInsight_owlSlider .blogsInsight_card {
  width: 100%;
}

.blogsInsight_owlSlider .owl-dots {
  margin-top: var(--space-20);
  display: none;
}

.blogsInsight_owlSlider .owl-dot span {
  background: rgba(255, 255, 255, 0.28) !important;
}

.blogsInsight_owlSlider .owl-dot.active span {
  background: var(--theme-color) !important;
}

@media (max-width: 1399px) {
  .blogsInsight_tag {
    font-size: var(--fs-16);
  }

  .blogsInsight_authorRole {
    font-size: var(--fs-16);
  }
}

@media (max-width: 991px) {
  .blogsInsight_cardTitle {
    font-size: var(--fs-18);
    height: 83px;
  }
}

@media (max-width: 991px) {
  .blogsInsight_actions {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .blogsInsight_section {
    padding: var(--space-40) 0;
  }

  .blogsInsight_actions {
    width: auto;
  }

  .blogsInsight_wrapper {
    border-radius: 18px;
  }

  .blogsInsight_tag {
    font-size: var(--fs-14);
  }

  .blogsInsight_cardTitle {
    font-size: var(--fs-16);
    height: 75px;
  }

  .blogsInsight_owlSlider {
    margin-bottom: 30px;
  }

  .blogsInsight_authorName {
    font-size: var(--fs-16);
  }

  .blogsInsight_authorRole {
    font-size: var(--fs-14);
  }
}

/* ------------------------ Client Reviews -----------------------------*/
.clientReview_section {
  background: var(--submenu-bg);
  padding: var(--space-80) 0 var(--space-80);
  border-radius: 16px;
}

.NewTest_readMore {
  color: #9bacff;
  font-weight: 500;
  font-family: var(--font-family-base);
  cursor: pointer;
  font-size: var(--fs-16);
}

.clientReview_wrapper {
  position: relative;
}

.clientReview_wrapper .services_btn_mobile {
  margin-top: var(--space-30);
}

.clientReview_prev.disabled,
.clientReview_next.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.clientReview_commaIcon {
  width: 32px !important;
  height: auto !important;
}

.clientReview_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.clientReview_title {
  margin: 0;
}

.clientReview_actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.services_btn_mobile {
  display: none;
}

.clientReview_card {
  background: var(--menu-box);
  border-radius: 16px;
  padding: 24px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--light-border);
}

.clientReview_text {
  margin: 20px 0;
  color: var(--white);
  font-size: var(--fs-18);
  line-height: 160%;
  font-weight: 400;
}

.clientReview_footer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  gap: 14px;
}

.clientReview_avatar {
  width: 56px !important;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.clientReview_meta h3 {
  margin: 0;
  color: var(--white);
  font-size: var(--fs-20);
  font-weight: 500;
  line-height: 130%;
}

.clientReview_meta p {
  margin: 0;
  color: var(--text-color);
  font-size: var(--fs-16);
  line-height: 140%;
}

.clientReview_owlSlider .owl-stage {
  display: flex;
}

.clientReview_owlSlider .owl-item {
  display: flex;
}

.clientReview_owlSlider .clientReview_card {
  width: 100%;
}

.clientReview_owlSlider .owl-dots {
  margin-top: 16px;
  display: none;
}

.clientReview_owlSlider .owl-dot span {
  background: rgba(255, 255, 255, 0.28) !important;
}

.clientReview_owlSlider .owl-dot.active span {
  background: #3f61ff !important;
}

@media (max-width: 1199px) {
  .clientReview_wrapper {
    border-radius: 22px;
  }

  .clientReview_text {
    font-size: var(--fs-16);
  }

  .clientReview_card {
    min-height: 300px;
  }
}

@media (max-width: 991px) {
  .clientReview_head {
    align-items: flex-start;
    gap: 14px;
  }

  .clientReview_actions {
    justify-content: space-between;
  }

  .clientReview_actions .primary_btn {
    width: auto;
  }
}

@media (max-width: 768px) {
  .clientReview_section {
    padding: var(--space-40) 0;
  }

  .clientreview_mobile_btn {
    margin-top: 20px;
  }

  .services_btn_mobile {
    display: flex;
    justify-content: center;
  }

  .services_btn_desktop {
    display: none;
  }

  .clientReview_wrapper {
    border-radius: 18px;
  }

  .clientReview_card {
    min-height: 272px;
    padding: 30px;
  }

  .clientReview_text {
    margin: 15px 0 20px 0;
    font-size: var(--fs-14);
  }

  .clientReview_meta h3 {
    font-size: var(--fs-18);
  }

  .clientReview_avatar {
    width: 48px !important;
    height: 48px;
  }
}

@media (max-width: 576px) {
  .clientReview_card {
    padding: 20px;
  }
}

/* ------------------------ CTA Section ---------------------------- */
.ctaSection_section {
  background: var(--black);
  padding: var(--space-80 ) 0;
  position: relative;
}



.ctaSection_card {
  background-image: var(--blue-gradient);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  flex-direction: column;
}

.ctaSection_bg {
  position: absolute;
  right: 0;
  height: 100%;
}

.ctaSection_content {
  max-width: max-content;
  text-align: center;
}

.ctaSection_actions {
  justify-self: end;
}

.ctaSection_title {
  margin: 0;
  color: var(--white);
  font-size: var(--fs-32);
  line-height: 125%;
  font-weight: 500;
}

.ctaSection_text {
  margin: 14px 0 20px;
  color: var(--white);
  font-size: var(--fs-18);
  line-height: 145%;
  font-weight: 400;
}

.ctaSection_btn {
  background: var(--white);
  color: var(--black);
  padding: var(--space-10) var(--space-12) var(--space-10) var(--space-20);
}

.ctaSection_btn::before {
  display: none;
}

.ctaSection_btn .btn-text {
  color: var(--black);
}

.ctaSection_btn .arrow {
  background-image: url("../images/arrow-right_h.png");
  background-size: 52%;
}

.ctaSection_btn:hover {
  color: var(--black);
}

.ctaSection_btn:hover .btn-text {
  color: var(--black);
}

@media (max-width: 991px) {
  .ctaSection_actions {
    justify-self: start;
  }
}

@media (max-width: 768px) {

  .ctaSection_section::before {
    display: none;
  }

  .ctaSection_section {
    padding: var(--space-40 ) 0;
  }

  .ctaSection_card {
    padding: 24px;
    border-radius: 20px;
  }

  .ctaSection_title {
    font-size: var(--fs-24);
  }

  .ctaSection_bg {
    right: -202px;
    transform: rotate(0deg);
  }

  .ctaSection_text {
    margin: 12px 0 16px;
    font-size: var(--fs-16);
    line-height: 150%;
  }

  .ctaSection_btn {
    width: 100%;
  }
}

/* ------------------------ Delivery Excellence ---------------------------- */
.deliveryEx_section {
  background: var(--black);
  padding: var(--space-80) 0 var(--space-80);
}

.deliveryEx_wrapper {
  position: relative;
}

.deliveryEx_title {
  margin: 0 0 28px;
}

.deliveryEx_layout {
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 38px;
  align-items: stretch;
}

.deliveryEx_mediaWrap {
  border-radius: 16px;
  overflow: hidden;
  background: var(--boxBG);
}

.deliveryEx_media {
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: block;
  object-fit: cover;
}

.deliveryEx_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.deliveryEx_item {
  display: flex;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--light-border);
  padding: 18px 0;
}

.deliveryEx_item:first-child {
  padding-top: 2px;
}

.deliveryEx_iconWrap {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-block;
}

.deliveryEx_icon {
  height: 50px;
  width: 50px;
}

.deliveryEx_text {
  margin: 0;
  color: var(--text-theme-primery);
  font-size: var(--fs-20);
  line-height: 170%;
  font-weight: 400;
  max-width: calc(100% - 110px);
}

@media (max-width: 1199px) {
  .deliveryEx_layout {
    gap: 24px;
  }

  .deliveryEx_text {
    font-size: var(--fs-16);
  }

  .deliveryEx_media {
    min-height: 420px;
  }

  .deliveryEx_item {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .deliveryEx_section {
    padding: var(--space-40) 0;
  }

  .deliveryEx_title {
    margin-bottom: 24px;
  }

  .deliveryEx_layout {
    display: block;
  }

  .deliveryEx_mediaWrap {
    margin-bottom: 24px;
    border-radius: 14px;
  }

  .deliveryEx_media {
    min-height: 190px;
    max-height: -webkit-fill-available;
  }

  .deliveryEx_item {
    gap: 16px;
    padding: 14px 0;
  }

  .deliveryEx_iconWrap {
    width: 54px;
    height: 54px;
  }

  .deliveryEx_icon {
    position: relative;
  }

  .deliveryEx_text {
    font-size: var(--fs-16);
    line-height: 145%;
  }
}

/* ------------------------ What We Do --------------------------------*/
.whatdo_section {
  padding: var(--space-80) 0;
  border-radius: 32px;
  background: var(--submenu-bg);
}

.whatdo_wrapper {
  position: relative;
}

.whatdo_head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
  margin-bottom: var(--space-16);
}

.whatdo_title {
  margin: 0;
}

.whatdo_intro {
  margin: 0;
  color: var(--text-color);
  font-size: var(--fs-18);
  line-height: 1.6;
  max-width: 500px;
  justify-self: end;
}

.whatdo_item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  gap: var(--space-24);
  padding: 48px 0;
  border-top: 0;
  border-bottom: 1px solid var(--light-border);
  align-items: start;
}

.whatdo_left {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 500px;
}

.whatdo_count {
  color: var(--white);
  font-size: var(--fs-20);
  font-weight: 400;
  line-height: 130%;
  min-width: 33px;
  display: inline-block;
  margin-top: 11px;
}

.whatdo_copy h3 {
  margin: 0 0 var(--space-8);
  color: var(--white);
  font-size: var(--fs-32);
  line-height: 140%;
  font-weight: 400;
}

.whatdo_copy p {
  margin: 0;
  color: var(--text-color);
  font-size: var(--fs-18);
  line-height: 160%;
  max-width: 620px;
}

.whatdo_tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  max-width: 500px;
  margin-left: auto;
}

.whatdo_tags a {
  display: inline-block;
}

.whatdo_tag {
  background: #ffffff;
  color: #111111;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: var(--fs-16);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  display: inline-block;
  transition: 0.3s all;
}

.whatdo_tags a:hover .whatdo_tag {
  background-color: var(--theme-color);
  color: var(--white);
}

.whatdo_hoverImage {
  position: absolute;
  top: 46%;
  left: 56%;
  border-radius: 18px;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
  width: 0;
  height: 0;
  overflow: hidden;
  transform: translate(-50%, -50%) rotate(1deg);
  transition: 0.3s all;
}

.whatdo_hoverImage img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.whatdo_item:hover .whatdo_hoverImage {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(12deg) scale(1);
  left: 50%;
  width: 274px;
  height: 222px;
}

.whatdo_item:hover .whatdo_hoverImage img {
  transform: scale(1);
}

.whatdo_item:hover .whatdo_hoverImage::after {
  opacity: 1;
}

.whatdo_btnWrap {
  margin-top: var(--space-30);
  display: flex;
  justify-content: center;
}

@media (max-width: 1399px) {

  .whatdo_left,
  .whatdo_tags,
  .whatdo_intro {
    max-width: 400px;
  }

  .whatdo_left {
    gap: 6px;
  }

  .whatdo_count {
    margin-top: 4px;
  }

  .whatdo_item:hover .whatdo_hoverImage {
    width: 240px;
    height: 196px;
  }

  .whatdo_copy h3 {
    font-size: var(--fs-24);
  }
}

@media (max-width: 1199px) {
  .whatdo_copy h3 {
    font-size: var(--fs-20);
  }

  .whatdo_intro {
    font-size: var(--fs-16);
  }

  .whatdo_item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 50%);
  }

  .whatdo_hoverImage {
    display: none;
  }

  .whatdo_tags {
    max-width: max-content;
  }

  .whatdo_left {
    max-width: 480px;
  }

  .whatdo_intro {
    width: 100%;
    max-width: max-content;
  }

  .whatdo_tag {
    font-size: var(--fs-14);
    padding: 8px 14px;
  }

  .whatdo_count {
    font-size: var(--fs-20);
    margin: 2px 0 0 0;
    min-width: 30px;
  }

  .whatdo_copy p {
    font-size: var(--fs-16);
  }
}

@media (max-width: 768px) {
  .whatdo_head {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .whatdo_copy p {
    font-size: var(--fs-14);
    width: 100%;
    max-width: 100%;
  }

  .whatdo_left,
  .whatdo_tags {
    max-width: 100%;
  }

  .whatdo_left {
    display: block;
  }

  .whatdo_count {
    position: absolute;
    left: 0;
  }

  .whatdo_copy h3 {
    padding-left: 40px;
  }

  .whatdo_intro {
    justify-self: start;
    font-size: var(--fs-16);
    width: 100%;
    max-width: 95%;
  }

  .whatdo_item {
    grid-template-columns: 1fr;
    gap: var(--space-16);
    border-bottom: 1px solid #232a3b;
  }

  .whatdo_hoverImage {
    display: none;
  }

  .whatdo_tags {
    order: 3;
    justify-content: flex-start;
    margin-left: 0;
    max-width: 100%;
  }

  .whatdo_section {
    padding: var(--space-40) 0;
  }

  .whatdo_item {
    padding: var(--space-30) 0;
  }
}

@media (max-width: 575px) {
  .whatdo_wrapper {
    border-radius: 16px;
  }

  .whatdo_item {
    padding: 20px 0;
  }

  .whatdo_left {
    gap: 12px;
  }

  .whatdo_copy h3 {
    font-size: var(--fs-20);
  }

  .whatdo_tag {
    font-size: var(--fs-12);
    padding: 7px 12px;
  }
}

/* ------------------------ Why Q3 ---------------------------- */
.whyQ3_section {
  background: var(--black);
  padding: var(--space-80) 0;
}

.whyQ3_wrapper {
  position: relative;
}

.whyQ3_head {
  margin-bottom: 30px;
}

.whyQ3_title {
  margin: 0;
}

.whyQ3_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.whyQ3_card {
  position: relative;
  overflow: hidden;
  background: var(--submenu-bg);
  border-radius: 24px;
  border: 1px solid var(--herder-border);
  padding: 26px 28px 136px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hidden-service.show-service {
  display: grid !important;
}

.whyQ3_cardTitle {
  margin: 0;
  color: var(--text-theme-primery);
  font-size: var(--fs-24);
  line-height: 132%;
  font-weight: 500;
}

.whyQ3_cardCopy {
  margin: 16px 0 20px;
  color: var(--text-color);
  font-size: var(--fs-18);
  line-height: 155%;
  /* text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical; */
  min-height: 170px;
}

.whyQ3_metricBox {
  border: 1px solid var(--herder-border);
  background: var(--menu-box);
  border-radius: 16px;
  padding: 16px 18px;
}

.whyQ3_metricValue {
  margin: 0 0 6px;
  font-size: var(--fs-28);
  font-weight: 600;
  line-height: 1;
  color: #9bacff;
}

.whyQ3_metricCopy {
  margin: 0;
  color: var(--text-color);
  font-size: var(--fs-16);
  line-height: 140%;
}

.whyQ3_decor {
  position: absolute;
  right: -6px;
  bottom: -10px;
  width: 190px;
  max-width: 48%;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .whyQ3_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
  }

  .whyQ3_card {
    padding: 40px 36px 131px;
  }
}

@media (max-width: 992px) {
  .whyQ3_section {
    padding: var(--space-40) 0;
  }

  .whyQ3_card {
    padding: 24px 24px 100px;
  }

  .whyQ3_cardCopy {
    font-size: var(--fs-16);
    line-height: 152%;
    min-height: fit-content;
  }
}

@media (max-width: 768px) {
  .whyQ3_head {
    margin-bottom: 24px;
  }

  .hidden-service.show-service {
    display: flex !important;
    flex-direction: column;
  }

  .whyQ3_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .whyQ3_grid .whyQ3_card {
    min-height: auto;
    padding: 20px 20px 90px;
  }

  .whyQ3_cardTitle {
    font-size: var(--fs-20);
  }

  .whyQ3_cardCopy {
    -webkit-line-clamp: 14;
    height: auto;
  }

  .whyQ3_metricValue {
    font-size: var(--fs-24);
  }

  .whyQ3_metricCopy {
    font-size: var(--fs-16);
  }

  .whyQ3_decor {
    width: 140px;
    max-width: 42%;
  }
   .whyQ3_cardCopy{min-height: max-content;}
}

@media (max-width: 576px) {
  .whyQ3_cardTitle {
    font-size: var(--fs-18);
  }

  .whyQ3_grid .whyQ3_card {
    padding: 20px 20px 90px;
  }
  .whyQ3_cardCopy{min-height: max-content;}
}

/* ------------------------ Solutions Built ----------------------------*/
.solutionBuilt_section {
  padding: var(--space-80) 0;
}

.solutionBuilt_wrapper {
  position: relative;
}

.solutionBuilt_head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-20);
  margin-bottom: var(--space-20);
}

.solutionBuilt_title {
  margin: 0;
  max-width: 690px;
}

.solutionBuilt_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 26px;
}

.solutionBuilt_card {
  display: flex;
  flex-direction: column;
}

.solutionBuilt_cardImage {
  overflow: hidden;
  border-radius: 21px;
  position: relative;
  max-height: 406px;
  height: auto;
  background: var(--submenu-bg);
}

.solutionBuilt_thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  object-fit: cover;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  height: 100%;
}

.solutionBuilt_card:hover .solutionBuilt_thumb {
  transform: scale(1.05);
}

.solutionBuilt_cardContent {
  padding-top: var(--space-30);
}

.solutionBuilt_label {
  width: max-content;
  border-radius: var(--radius-pill);
  font-size: var(--fs-12);
  line-height: 1;
  display: inline-block;
  box-shadow:
    -1px -1px 2px -1px #ffffff91,
    inset 0px -2px 2px -2px #ffffff91;
  position: relative;
  overflow: hidden;
}

.solutionBuilt_label span {
  position: relative;
  z-index: 1;
  padding: 7px 14px;
  font-weight: 500;
}

.solutionBuilt_label::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--label-bg);
  z-index: 0;
}

.solutionBuilt_cardTitle {
  margin: var(--space-14) 0 var(--space-16);
  color: var(--text-theme-primery);
  font-size: var(--fs-20);
  line-height: 140%;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 90px;
}

.solutionBuilt_cardCta {
  width: max-content;
}

@media (max-width: 1199px) {
  .solutionBuilt_title {
    max-width: 550px;
  }

  .solutionBuilt_cardImage {
    smax-height: 340px;
  }

  .solutionBuilt_grid {
    gap: 40px;
  }

  .solutionBuilt_cardTitle {
    font-size: var(--fs-18);
    height: 80px;
  }
}

@media (max-width: 992px) {
  .solutionBuilt_title {
    max-width: calc(100% - 340px);
  }

  .solutionBuilt_grid {
    gap: 24px;
  }

  .solutionBuilt_section {
    padding: var(--space-40) 0;
  }
}

@media (max-width: 768px) {
  .solutionBuilt_section {
    overflow: hidden;
  }

  .solutionBuilt_head {
    margin-bottom: 24px;
  }

  .solutionBuilt_title {
    max-width: 100%;
  }

  .solutionBuilt_topCta {
    display: none;
  }

  .solutionBuilt_grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
    padding-bottom: var(--space-40);
  }

  .solutionBuilt_grid::-webkit-scrollbar {
    display: none;
  }

  .solutionBuilt_grid .solutionBuilt_card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    width: 88%;
  }

  .solutionBuilt_cardTitle {
    font-size: var(--fs-16);
    height: 70px;
  }
}

@media (max-width: 576px) {
  .solutionBuilt_cardTitle {
    -webkit-line-clamp: 3;
  }

  .solutionBuilt_cardImage {
    height: 200px;
  }
}