/* Software developemnt service */
.service_banner {
  padding: 150px 0;
}

.software_development_banner {
  background: url("../image/development-service/software-development/software-development.jpg");
  background-size: cover;
  background-position: center;
  z-index: 1;
  position: relative;
}

.overlay::after {
  position: absolute;
  content: "";
  background: linear-gradient(0deg, #000000c7, #00000066);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.sub_heading {
  display: inline-block;
  background: rgba(23, 105, 255, 0.1);
  padding: 4px 10px;
  border-radius: 10px;
  color: rgba(23, 105, 255, 1);
  font-size: 18px;
  font-weight: 500;
}
.bg-blue {
  background: rgba(222, 230, 245, 0.5);
}

/* timeline section */
/* The software-development-roadmap Container */
.software-development-roadmap {
  position: relative;
  /* max-width: 1000px; */
  margin: 0 auto;
  padding: 50px 0;
}

/* Center Line Background */
.software-development-roadmap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  height: 90%;
  bottom: 0;
  width: 2px;
  background: #d1d9e0;
  transform: translateX(-50%);
}

/* Active Progress Line */
#active-line {
  position: absolute;
  left: 50%;
  width: 2px;
  background: #f47b20;
  transform: translateX(-50%);
  z-index: 2;
  height: 0;
  transition: height 0.1s linear;
}

.software-development-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 140px;
  position: relative;
  z-index: 3;
}

/* Alternate sides */
.software-development-step:nth-child(even) {
  flex-direction: row;
}

.content-box {
  width: 42%;
  opacity: 0.3;
  transition: 0.6s ease;
}

.visual-box {
  width: 42%;
  display: flex;
  justify-content: end;
  align-items: center;
}
.visual-box-left {
  justify-content: start !important;
}

/* Ghosted Icon Logic */
.visual-box img {
  width: 120px;
  height: 120px;
  filter: grayscale(0.9);
  opacity: 0.2;
  transition: all 0.6s ease;
}

/* Active Styling */
.software-development-step.active .content-box {
  opacity: 1;
}

.software-development-step.active .visual-box img {
  stroke: #f47b20;
  stroke-width: 1.5;
  filter: grayscale(1);
  opacity: 1;
  transform: scale(1.1);
  filter: drop-shadow(0 5px 15px rgba(244, 123, 32, 0.2));
}

/* Number Bubbles */
.number-bubble {
  width: 40px;
  height: 40px;
  background: white;
  border: 2px solid #d1d9e0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.4s;
}

.software-development-step.active .number-bubble {
  background: #f47b20;
  color: white;
  border-color: #f47b20;
  /* transform: translate(-50%, -50%) scale(1.2); */
}

.text-right {
  text-align: right;
}

@media (max-width: 768px) {
  .software-development-roadmap::before,
  #active-line,
  .number-bubble {
    left: 30px;
    transform: none;
  }

  .software-development-step,
  .software-development-step:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }

  .content-box,
  .visual-box {
    width: 85%;
    margin-left: 60px;
    text-align: left;
  }

  .visual-box {
    order: -1;
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .number-bubble {
    transform: translate(-50%, 0);
    top: 0;
  }
}

/*Peoject Showcase  */
.development-project-img img {
  width: 100%;
  height: 100%;
}
.development-projects {
  box-shadow: 0px 0px 23.9px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
}
.horizontal-projects {
  display: grid;
  grid-template-columns: 35% 65%;
}
.development-project-content {
  padding: 40px;
}
.custom-cta-btn.case-study-btn {
  background: none;
  border: 1px solid #f58634;
  color: #f58634;
}
.custom-cta-btn.case-study-btn:hover {
  background: #f58634;
}
.custom-cta-btn.case-study-btn span {
  color: #f58634;
  transition: all 0.2s;
}
.custom-cta-btn.case-study-btn:hover span {
  color: #ffffff;
}

/* approch section */
.our-technology {
  background: linear-gradient(119.34deg, #ffffff 0.96%, #dbe1ff 100%);
}
.software-approch {
  background: #f9f9f9;
  overflow: hidden;
}
.our-tech-img {
  position: sticky;
  top: 110px;
}
.approch-icon {
  display: inline-flex;
  border-bottom: 5px solid #f58634;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  position: relative;
  padding: 25px;
}
.approch-icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  right: -185px;
  width: 150px;
  background: none;
  border-top: 2px dashed #f58634;
  content: "";
}
.col-lg-3:last-child .approch-icon::after {
  display: none;
}
.approch-wrapper {
  padding: 25px;
}

/* tech accordion */
/* .tech-accordion {
  max-width: 900px;
  margin: auto;
} */

.tech-item {
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  background: #fff;
  border-left: 2px solid #eb8031;
}
.tech-header {
  padding: 15px 20px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;

  position: relative;
}

.tech-item.active .tech-header {
  color: #f58634;
  background: #ff862c0f;
}

.tech-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.tech-item.active .tech-content {
  padding: 15px 20px 20px;
  max-height: fit-content;
}

.tech-content ul {
  padding-left: 20px;
}

.tech-content li {
  margin-bottom: 8px;
}

/* industry */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px auto 0;
}

.pill {
  background: white;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.2s ease;
  cursor: pointer;
}
.pill:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); */
}

.pill span {
  font-weight: 600;
  color: #374151;
  font-size: 0.9rem;
  white-space: nowrap;
}

.icon-circle {
  background: linear-gradient(180deg, #f58634 0%, #ff720a 100%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle img {
  width: 25px;
  filter: brightness(1111);
}
/* testimonials */

.testimonials-wrapper {
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 10px;
  margin-top: 0px !important;
  margin-left: 0px !important;
  z-index: 1;
  position: relative;
}
.outsource-wrapper {
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  padding: 20px 20px 20px 20px;
  position: relative;
  height: 350px;
  margin-top: 50px;
}
.bottom-number {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 45px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #f586346e;
  line-height: 1;
}
.top-gap {
  margin-top: 150px;
}

.outsource-development {
  padding: 100px 0 150px;
  background: #f9f9f9;
  overflow: hidden;
}
.shape-line img {
  position: absolute;
  top: 20px;
  left: 50%;
}
.shape-line-2 img {
  position: absolute;
  top: -10px;
  left: 50%;
}

/* transformation tech */
.digitel-wrapper {
  position: relative;
  transition: all 0.3s;
}
.custom-cta-btn.transformation-cta {
  background: none;
}
.custom-cta-btn.transformation-cta span {
  color: rgb(0, 0, 0);
}
.transformation-content {
  box-shadow: 0px 0px 30.7px 0px rgba(167, 167, 167, 0.25);
  padding: 30px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
}
.transformation-icon {
  background: linear-gradient(134.31deg, #1263f7 1.07%, #034fd9 99.34%);
  padding: 15px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  justify-content: center;

  position: relative;
  margin: 30px auto;
}
.transformation-icon.left-icon {
  margin-right: 90px;
}
.transformation-icon.right-icon {
  margin-left: 90px;
}
.arrow-shape.position-relative {
  width: 200px;
}
.arrow-shape .shape-arrow-1 {
  position: absolute;
  top: -45px;
  right: -12px;
}
.arrow-shape .shape-arrow-2 {
  position: absolute;
  top: -103px;
  right: -13px;
}
.arrow-shape .shape-arrow-3 {
  position: absolute;
  top: -45px;
  left: -180px;
}
.arrow-shape .shape-arrow-4 {
  position: absolute;
  top: -105px;
  left: -183px;
}
.digitel-wrapper:hover .transformation-content {
  background: linear-gradient(134.31deg, #1263f7 1.07%, #034fd9 99.34%);
}
.digitel-wrapper:hover h3 {
  color: white;
}
.digitel-wrapper:hover p {
  color: white;
}
.digitel-wrapper:hover .transformation-cta span {
  color: white;
}
.why-data-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.why-data-wrap {
  display: flex;
  align-items: center;
  gap: 20px;

  border: 1px solid rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.2);
  padding: 20px;
  border-radius: 10px;
  height: 100%;
}
.why-inner-wrap {
  padding: 80px;
  background: linear-gradient(337.13deg, #0f2672 2.44%, #0a3e9c 97.69%);
  border-radius: 20px;
}
.faq-section {
  background: rgba(222, 230, 245, 0.5);
  padding: 80px 20px;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.faq-item.active {
  border-left: 4px solid #ff5600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.faq-question {
  font-size: 18px;
  font-weight: 400;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ff5600;
}

.faq-question i {
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #666;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #ff5600;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 100%;
  opacity: 1;
  padding: 0 20px 20px;
}

.faq-item.active .faq-question span {
  color: #ff5600;
}

/* .more-faqs {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    } */

/* .more-faqs.open {
        opacity: 1;
    } */

.faq-item.hidden {
  opacity: 0;
  height: 0;
  padding: 0;
  margin: 0;
  pointer-events: none;
  transition: all 0.4s ease-in-out;
}

.show-more-btn {
  border-bottom: 1px solid black;
  display: inline-block;
  margin: 20px auto 0;
  padding: 0px;
  color: #f58634;
  font-size: 18px;
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 1px solid #f58634;
  transition: background 0.3s ease;
}

.client-slider .slide-card {
  height: fit-content !important;
  transform: none !important ;
}
.client-slider .slide-card.active {
  transform: none !important;
}

/* techstack*/

.techstack-tab {
  background: linear-gradient(337.13deg, #0f2672 2.44%, #0a3e9c 97.69%);
  overflow: hidden;
  padding: 100px 0;
}
.stack-menu {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.stack-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border: blanchedalmond;
}
.stack-menu li {
  padding: 18px 35px;
  font-size: 20px;
  color: #374151;
  cursor: pointer;
  position: relative;
  transition: 0.25s ease;
  border-bottom: 0.5px solid rgba(226, 222, 222, 1);
}
.stack-menu li.active {
  font-weight: 500;
  background: #fff;
  color: #f97d21;
}
.stack-menu li.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #f97d21;
  border-radius: 0 4px 4px 0;
}
.stack-menu li:not(.active):hover {
  background: #f9fafb;
}

.stack-layout {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 45px;
    align-items: flex-start;
    position: relative;
    z-index: 11;
}
.section-title {
    position: relative;
    z-index: 11;
}
/* RIGHT GRID */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.tech-card {
  background: white;
  border-radius: 10px;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease;
  border: 0.5px solid #f58634;
  box-shadow: 0px 0px 20.8px 0px rgba(0, 0, 0, 0.25);
}

.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.25);
}

.tech-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.tech-card span {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
}

.stack-content .stack-grid {
  display: none;
}

.stack-content .stack-grid.active {
  display: grid;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .stack-layout {
    grid-template-columns: 1fr;
  }

  .stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title h2 {
    font-size: 22px;
  }
}
@media (max-width: 1400px) {
  .approch-icon::after {
    right: -165px;
  }
  .shape-line-2 img {
   
    top: 0;
  
}
}

@media (max-width: 1200px) {
  .approch-wrapper {
    padding: 10px;
  }
  .approch-icon::after {
    right: -150px;
  }
  .stack-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stack-layout {
    gap: 20px;
  }
  .shape-line-2 img {
    top: 20px;
}
.text-end {
    text-align: start;
}
.custom-cta-btn.transformation-cta {
    background: none;
    padding: 10px 0;
}

}
@media (max-width: 991px) {
  .horizontal-projects {
    display: grid;
    grid-template-columns: 100%;
    height: 100%;
  }
  .development-projects {
    box-shadow: 0px 0px 23.9px 0px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
  }
  .approch-icon::after {
    display: none;
  }
  .shape-line-2 img {
   
    display: none;
}
.shape-line img {
   
    display: none;
}
.top-gap {
    margin-top: 0px;
}
.outsource-wrapper {
    margin-top: 0;
    margin: 10px 0;
}
.transformation-icon.left-icon {
    margin-right: 90px;
    display: none;
}
.transform-img{
  display: none;
}
.transformation-icon.right-icon {
    margin-left: 90px;
    display: none;
}
}
@media (max-width: 767px) {
  .stack-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .development-project-content {
    padding: 25px;
}
}

@media (max-width: 576px) {
  .software-development-step {
    margin-bottom: 70px;
  }
  .visual-box img {
    width: 60px;
    height: 60px;
  }
  .stack-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-inner-wrap {
    padding: 30px;
   
}
}

@media (max-width: 420px) {
  .content-box,
  .visual-box {
    width: 100%;
    margin-left: 0px;
    text-align: start;
  }

  .software-development-roadmap::before,
  #active-line,
  .number-bubble {
    display: none;
  }
  .software-development-step {
    margin-bottom: 30px;
  }
  .stack-menu li {
    padding: 15px;
    font-size: 18px;
  }
  .tech-card {
    padding: 10px 10px;
  }
  .tech-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 10px;
  }
  .icon-circle img {
    width: 20px;
    filter: brightness(1111);
}
  .icon-circle {
    width: 30px;
    height: 30px;
  }
  .pill span {
    font-size: 10px;
  }
  .pill {
    padding: 10px 12px;
  }
  .pill-grid {
    gap: 9px;
  }
  .outsource-wrapper {
   
    height: 300px;
    margin-top: 50px;
}
}
@media (max-width:320px) {
    .outsource-wrapper {
   
   height: fit-content;
    margin-top: 50px;
}
}