p {
  font-size: 16px !important;
}

.slick-slide img {
  width: 50px !important;
}

* {
  box-sizing: border-box;
}

p.fs-20 {
  font-size: 18px;
  font-weight: 600 !important;
}

.dev-tab-btn:focus:not(:focus-visible) {
  border-radius: 10px;
  box-shadow: 0px 0px 9.1px 0px rgba(0, 0, 0, 0.25) !important;
}

.banner-btn {
  text-decoration: none;
  margin-top: 20px;
}

.banner-btn:hover {
  color: white !important;
}

.about-section-image img {
  filter: invert(1);
}

.project-content {
  padding: 10px 30px;
}

.dev-tab-btn {
  width: 100%;
  text-align: left;
  padding: 20px;
  margin-bottom: 10px;
  border: none;
  box-shadow: 0px 0px 9.1px 0px rgba(0, 0, 0, 0.25);
  background: #fff;
  border-radius: 10px;
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dev-tab-btn.active {
  border-radius: 10px;
  background: #ffffff;
  border-left: 6px solid #000000;
  color: #000000;
  display: block;
  box-shadow: 0px 0px 9.1px 0px rgba(0, 0, 0, 0.25);
}

button.dev-tab-btn.active p {
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin: 0;
}

.dev-sidebar {
  position: relative;
  height: 75vh;
  overflow-y: scroll;
  padding: 5px 15px;
}

.dev-sidebar::-webkit-scrollbar {
  width: 4px;
}

.dev-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.dev-sidebar::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #000, #444);
  border-radius: 50px;
}

.dev-sidebar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #222, #666);
}

.dev-tab-content {
  display: none;
}

.dev-tab-content.active {
  display: block;
  padding: 20px;
}

/* industry section */
.industry-wrap {
  padding: 10px;
  overflow-y: scroll;
  height: 75vh;
}

.industry-wrap::-webkit-scrollbar {
  width: 5px;
}

.biz-tabs {
  padding: 10px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

.biz-tab-btn.active p {
  color: white;
}

/* Wrapper */
.biz-content-wrapper {
  position: relative;
  overflow: hidden;
  transition: height 0.5s ease;
}

/* Tabs */
.biz-tab-btn {
  border: none;
  background: transparent;
  padding: 8px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 5px;
}

.biz-tabs p {
  font-size: 15px;
  font-weight: 500;
}

.biz-tab-btn.active {
  background: #000000;
  color: #fff;
  border-radius: 5px !important;
  /* box-shadow: 0px 0px 10.9px 0px rgba(10, 89, 232, 1); */
}

/* Content */
.biz-tab-content {
  position: absolute;
  width: 100%;
  top: 0;
  left: 100%;
  opacity: 0;
  transition: all 0.5s ease;
}

.biz-tab-content.active {
  left: 0;
  opacity: 1;
  position: relative;
  /* important for height */
}

.biz-tab-content .check-list li {
  position: relative;
  margin: 15px 0;
}

.biz-tab-content .check-list li::before {
  position: absolute;
  content: "";
  height: 150%;
  width: 1px;
  background-color: #0d6efd;
  top: 5px;
  left: 10px;
}

.biz-tab-content .check-list li:last-child:before {
  display: none;
}

.biz-tab-content.slide-left {
  left: -100%;
  opacity: 0;
}

/* fintech section */
/* SECTION */
.fintech {
  background: #000;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

/* STEPS */
.timeline {
  margin-top: 60px;
  position: relative;
}

/* LINE */
.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  width: 84%;
  height: 1px;
  background: #555;
  bottom: 30px;
}

/* STEP */
.step-box {
  position: relative;
}

.step-content {
  height: 230px;
  padding: 15px;
}

/* ICON */
.step-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 26px;
}

.step-box .icon img {
  filter: invert(1);
}

/* TITLE */
.step-box h6 {
  margin-top: 15px;
  font-weight: 600;
  color: white;
  font-size: 16px;
}

/* SMALL TEXT */
.step-box p {
  display: block;
  font-size: 15px;
  color: #ffffff;
  margin-top: 5px;
}

/* DOT */
.step-box .dot {
  border-radius: 50%;
  margin: 20px auto;
  border: 1px solid white;
  display: inline-block;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  background: black;
  justify-content: center;
}

/* ARROW */
.step-box .arrow {
  position: absolute;
  right: -25px;
  font-size: 22px;
  bottom: -4px;
}

/* BUTTON */
.step-box .cta-btn {
  background: #fff;
  color: #000;
  padding: 12px 30px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 40px;
  font-weight: 600;
}

a.cta-btn {
  background: white;
  padding: 10px 15px;
  margin-top: 15px;
  display: inline-block;
  color: black;
  border-radius: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .timeline::before {
    display: none;
  }

  .step-box .arrow {
    display: none;
  }

  .step-box {
    margin-bottom: 40px;
  }
}

/* benefites */
.fintech-benefits {
  overflow: visible !important;
}

.benefits-block {
  padding: 45px 25px;
  border: 1px solid #e1e1e1;
  border-radius: 25px;
  margin: 25px 0;
  transition: all 0.3s ease;
}

.fintech-benefits-content {
  position: sticky;
  top: 150px;
  max-width: 500px;
}

.benefits-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefits-block:hover {
  transform: translateY(-5px);
}

/*  */
/* sucess stories */
ul.project-list {
  list-style: disc;
  padding-left: 25px;
}

img.testimonial-quote-icon-second.text-end {
  width: 80px;
  height: 80px;
}

.project-content h6 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  border-bottom: 2px solid black;
  display: inline-block;
}

.project-content h3 {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
}

ul.project-list li p {
  font-size: 16px;
  color: #000000;
}

.ondemand-work-carousel .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.ondemand-work-carousel .owl-item {
  padding: 30px !important;
}

.ondemand-work-carousel .owl-stage-outer {
  overflow: hidden;
}

.content-image {
  position: sticky;
  top: 100px;
}

.ondemand-work-carousel .work-item {
  background: transparent;
  border-radius: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.ondemand-work-carousel .owl-carousel .owl-item figure img {
  display: block;
  height: auto;
  max-width: fit-content;
  width: 100%;
  margin: auto;
}

.ondemand-work-carousel
  .owl-carousel
  .owl-item
  img.testimonial-quote-icon-first {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-top: -20px;
}

.ondemand-work-carousel
  .owl-carousel
  .owl-item
  img.testimonial-quote-icon-second {
  width: 40px;
  height: 40px;
  display: inline-block;
  transform: rotate(180deg);
  margin-bottom: -20px;
}

.ondemand-work-carousel .impact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  background: white;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  height: 100%;
}

.ondemand-work-carousel .key-capabilities i {
  color: #000000;
  font-size: 30px;
}

.key-head {
  font-size: 16px;
  font-weight: 500;
  color: black;
}

.ondemand-work-carousel .testimonials-wrap {
  background: white;
  box-shadow: 0px 0px 17.3px 0px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #000000;
  border-radius: 10px;
  padding: 30px;
}

.ondemand-work-carousel .owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.ondemand-work-carousel
  .owl-carousel
  .owl-item
  img.testimonial-quote-icon-second {
  width: 40px;
  height: 40px;
  display: inline-block;
  transform: rotate(180deg);
  margin-bottom: -20px;
}

.ondemand-work-carousel .mobile-application-development-page-wrapper .owl-nav {
  display: flex;
  font-size: 30px;
  justify-content: end;
}

.ondemand-work-carousel button.owl-prev {
  color: #043efb !important;
  background: #fff !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  justify-content: center;
  border-radius: 50%;
  margin: 10px;
}

.ondemand-work-carousel .owl-nav {
  display: flex;
  font-size: 30px;
  justify-content: end;
}

.ondemand-work-carouselbutton .owl-prev {
  color: #043efb !important;
  background: #fff !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  justify-content: center;
  border-radius: 50%;
  margin: 10px;
}

.ondemand-work-carousel button.owl-next {
  color: #043efb !important;
  background: #fff !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  justify-content: center;
  border-radius: 50%;
  margin: 10px;
}

/* why choose us */
/* Heading */
.fintech-main-heading {
  font-size: 48px;
  font-weight: 700;
}

.fintech-main-heading span {
  color: #ff9ecb;
}

.fintech-sub-text {
  color: #aaa;
  max-width: 600px;
  margin: auto;
}

/* Wrapper */
.fintech-cards-wrapper {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

/* Cards */
section.fintech-payment-section {
  background: black;
}

.fintech-card {
  flex: 1;
  padding: 40px 25px;
  border-radius: 20px;
  background: #2c2c2c;
  transition: all 0.5s ease;
  cursor: pointer;
}

/* Default active (center) */
.fintech-card.active {
  flex: 1.2;
  transform: scale(1);
  opacity: 1;
}

/* Hover behavior */
.fintech-cards-wrapper:hover .fintech-card {
  flex: 0.9;
  transform: scale(0.95);
}

/* Hover active card */
.fintech-cards-wrapper .fintech-card:hover {
  flex: 1.6;
  transform: scale(1.05);
  opacity: 1;
  z-index: 2;
}

/* Text */
.fintech-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.fintech-card p {
  color: #ccc;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .fintech-cards-wrapper {
    flex-direction: column;
  }

  .fintech-card,
  .fintech-card.active {
    flex: 1;
    transform: none;
    opacity: 1;
  }
}

.faq-section {
  padding: 60px 20px;
}

.faq-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.faq-question {
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question h4 {
  margin: 0;
  font-size: 18px;
}

.icon {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px;
}

.faq-answer p {
  margin: 0;
  color: #555;
}

/* Overlay */
.expert-section {
  background-color: #000000;
  padding: 70px 0 25px;
  background-image: url("assets/images/bg-shape-line.png");
}

.blue-heading-style {
  color: rgb(0, 0, 0);
}

.expert-card {
  background: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: -175px;
}

.contact-form h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}

.my-form input,
.my-form textarea {
  width: 100%;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  padding: 15px 10px;
  border: 1px solid #c8c8c8;
  color: #686868;
  background: #ffffff;
  transition:
    background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
    transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.my-form input:focus,
.my-form textarea:focus {
  background: #ffffff;
}

.my-form input,
.my-form select {
  width: 100%;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  padding: 15px 10px;
  border: 1px solid #c8c8c8;
  color: #686868;
  background: #ffffff;
  transition:
    background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
    transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

/* input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"] {
    width: 100%;
    min-height: 44px;
    padding: 3px 20px;
    color: #343a40;
    outline: 0;
    font-weight: 400;
    font-size: 16px;
} */
.expert-card h5 {
  font-weight: 600;
  margin-bottom: 20px;
}

.expert-card form label {
  font-size: 14px;
}

.form-submit-btn {
  font-size: 20px !important;
  font-weight: 500;
  padding: 5px 20px !important;
  margin: 10px 0 15px;
  color: var(--bs-white);
  background: #1263f7 !important;
  width: 100%;
  border-radius: 12px !important;
  transition: 0.5s ease-in-out;
  background: 0 0;
  border: 1px solid #fff;
}

.submit-btm {
  background: #000000;
}

.submit-btm .btn-icon {
  color: #ffffff;
  background-color: #000000;
  border-left: 1px solid;
}

.expert-card select.form-select {
  width: 100%;
  min-height: 44px;
  padding: 3px 4px;
  color: var(--bs-gray-dark);
  border: var(--bd-gray-border) solid 1px;
  outline: 0;
  font-weight: 400;
  font-size: 16px;
}

.my-form input:focus,
.my-form textarea:focus {
  transform: none;
}

.submit-btm:hover {
  background: #222;
  border-color: #fff;
  color: #fff;
  padding: 10px 75px 10px 40px;
}

.submit-btm:hover .btn-icon {
  background: bottom;
  color: #ffffff;
  border-left: 1px solid white;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 105000;
  overflow: auto;
}

@media (max-width: 1200px) {
  .step-content {
    height: 350px;
    padding: 15px;
  }
}

@media (max-width: 991px) {
  .step-content {
    height: 230px;
    padding: 15px;
  }

  .step-box .arrow {
    display: none;
  }

  .timeline::before {
    display: none;
  }

  .biz-tabs {
    display: inline-table;
  }

  .fintech-cards-wrapper {
    display: grid;
    gap: 20px;
    align-items: stretch;
    grid-template-columns: 50% 50%;
  }

  .expert-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-top: 0;
  }

  .banner-section {
    padding: 60px 0 50px 0 !important;
  }

  .project-content {
    padding: 0;
  }

  .ondemand-work-carousel .owl-item {
    padding: 0 !important;
  }

  .dev-sidebar {
    position: relative;
    overflow: hidden;
    padding: 5px 15px;
    display: grid;
    grid-template-columns: 45% 45%;
    gap: 5%;
    height: 400px;
  }
}

@media (max-width: 767px) {
  .benefits-wrapper {
    display: grid;
    flex-direction: column;
    gap: 20px;
    grid-template-columns: 50% 50%;
  }

  .banner-section {
    padding: 120px 0 50px 0 !important;
  }

  .dev-sidebar {
    height: 500px;
  }

  .dev-tab-btn {
    padding: 15px;
  }

  .benefits-block {
    margin: 0;
  }

  .center-text {
    text-align: start !important;
  }

  .step-content {
    height: auto;
    padding: 15px;
  }

  .agency.header .bg {
    padding-bottom: 0;
  }

  .banner-section {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .benefits-wrapper {
    display: grid;
    flex-direction: column;
    gap: 20px;
    grid-template-columns: 100%;
    margin-top: 10px;
  }

  .fintech-cards-wrapper {
    display: grid;
    gap: 20px;
    align-items: stretch;
    grid-template-columns: 100%;
  }
}

@media (max-width: 520px) {
  .dev-sidebar {
    position: relative;
    overflow: hidden;
    padding: 5px 15px;
    display: grid;
    grid-template-columns: 100%;
    gap: 0;
  }

  .dev-sidebar {
    height: 100%;
  }

  .submit-btm {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .faq-item.active .faq-answer {
    max-height: fit-content;
    padding: 15px 20px;
  }
}

header nav ul li > a:hover {
  color: #000000;
}
