.web-hero-section {
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0)
    ),
    url('/assets/img/pages/app-dev/app-dev.jpg') center/cover no-repeat;
}

.header-left-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-div-hr {
  width: 150px;
  margin-left: 0;
  margin-right: auto;
}

.hero-btn-div {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.tab-container {
  width: 100%;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.parent-tab-div {
  width: 100%;
  /* overflow: scroll; */
}

.tabs {
  display: flex;
  gap: 20px;
  /* min-width: 1100px; */
  /* overflow: scroll; */
}

.tab {
  font-family: var(--font-family-base);
  background-color: transparent;
  border: 1.5px solid var(--text-color-light);
  padding: 8px 18px;
  font-size: var(--font-size-normal);
  font-weight: var(--font-weight-medium);
  flex: 1;
  cursor: pointer;
  color: var(--text-color-light);
  position: relative;
  border-radius: 30px; /* Rounded corners */
  overflow: hidden; /* Keep gradient inside shape */
  z-index: 0;
}

.tab:hover {
  background: hsl(0, 100%, 99%);
}

.tab.active {
  border: none;
  background: #ffffff;
  background: linear-gradient(
    45deg,
    var(--primary-theme-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tab-content {
  padding-top: 20px;

  width: 100%;
}

.content {
  display: none;
  gap: 50px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.9s ease; /* smooth fade */
  transform: translateX(100px);
  transition: all 0.4s ease;
}

.tab-desc > p {
  word-spacing: 3px;
  line-height: 28px;
}
.tab-desc {
  padding: 10px;
}

.content.active {
  display: flex;

  opacity: 1;
  transform: translateX(0);
  position: relative;
}

.tab-main-content {
  flex: 4;
}

.tab-img-content {
  flex: 2;

  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/assets/img/pages/app-dev/app-dev-custom.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}
.tab-content-div {
  margin-top: 50px;
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#tab-img-content2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/assets/img/pages/app-dev/ios.jpg');
}
#tab-img-content3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/assets/img/pages/app-dev/cross.jpg');
}
#tab-img-content4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/assets/img/pages/app-dev/enterprise.jpg');
}
#tab-img-content5 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('/assets/img/pages/app-dev/startup.jpg');
}

.icon-text-div {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
  padding: 30px;
  border-bottom: 8px solid var(--primary-theme-color);
  /* border-top: 10px solid var(--pri-secondary-color); */
  transition: 0.3s;
  cursor: pointer;
}

.icon-text-div:hover {
  transition: 0.3s;
  transform: scale(1.03);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px,
    rgba(32, 170, 255, 0.3) 0px 5px, rgba(32, 170, 255, 0.2) 0px 10px,
    rgba(32, 170, 255, 0.1) 0px 15px, rgba(32, 170, 255, 0.05) 0px 20px,
    rgba(32, 170, 255, 0) 0px 25px;
}

.icon-text-div .img {
  width: 60px;
  height: 60px;
}
.icon-text-div .img img {
  width: 100%;
}

.tab-img-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.tab-img-content h2 {
  margin-top: auto;
  font-weight: 500 !important;
}

.web-dev-explore-bottom-btn {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  align-items: end;
}

.app-industry-section > .full-width-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-top-header {
  display: flex;
  justify-content: space-between;
}

.section-main-title {
  max-width: 500px;
}
.section-sub-title {
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
}

.section-sub-title p {
  text-align: right;
}
.section-sub-title button {
  align-self: flex-end;
}

.app-industry-div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.each-industry {
  /* max-width: 450px; */
  min-width: 350px;
  flex: 1;
  padding: 20px;
  border-radius: 20px;

  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.461),
      rgba(0, 0, 0, 0.476)
    ),
    url('/assets/img/pages/app-dev/backkk.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.each-industry:nth-of-type(2) {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.461),
      rgba(0, 0, 0, 0.476)
    ),
    url('/assets/img/pages/app-dev/backkgr2.jpg');
}
.each-industry:nth-of-type(4) {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.461),
      rgba(0, 0, 0, 0.476)
    ),
    url('/assets/img/pages/app-dev/backkgr2.jpg');
}
.each-industry:nth-of-type(6) {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.461),
      rgba(0, 0, 0, 0.476)
    ),
    url('/assets/img/pages/app-dev/backkgr2.jpg');
}

.each-industry p {
  color: white;
}
.each-industry h2 {
  color: white;
}
.each-industry-top {
  display: flex;
  gap: 10px;
  align-items: center;
}

.industry-icon-div {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.industry-icon-div img {
  width: 80%;
}

.web-tech-stack > .full-width-container {
  display: flex;
  flex-direction: column;
}
.tech-stack-title-div {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.tech-stack-title-div > h3 {
  max-width: 600px;
}

.tech-tab-content {
  min-height: 130px;
}

.technology-section-content {
  margin-top: 150px;
  width: 100%;
  min-height: 700px;
  background-color: white;
  background-color: rgb(18, 18, 18);
  background-image: url('/assets/img/others/footer-map.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.web-tech-stack {
  padding-bottom: 100px;
}

.why-choose-content {
  display: flex;
  gap: 20px;
  padding-top: 50px;
}
.why-choose-info-div {
  background-image: url('/assets/img/pages/app-dev/stockmobile.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 450px;
  padding: 20px;
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: end;
  border-radius: 20px;
}

.why-choose-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.each-why-box {
  display: flex;
  border-radius: 20px;
  flex: 1 1 45%;
  gap: 20px;
  padding: 40px;
  box-shadow: rgba(0, 0, 0, 0.076) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.why-choose-icon {
  width: 80px;
  height: 80px;
}
.why-choose-icon img {
  width: 95%;
}

@media screen and (max-width: 1070px) {
  .hero-title-div {
    width: 85%;
  }

  .hero-title-div h2 {
    line-height: 32px;
  }

  .title-desc {
    width: 85%;
  }

  .content.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
  }

  .technology-table {
    min-width: 300px;
    max-width: max-content;
  }

  .web-tech-stack .full-width-container {
    margin-top: 60px;
    border-radius: 0px;
    background-color: var(--text-color-white);

    padding: 0px;
    box-shadow: none;
    flex-direction: column;
  }
  .tab-desc {
    padding: 0px;
  }

  .parent-tab-div {
    position: relative;
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
    padding: 25px 20px;
  }

  .tech-stack-title-div {
    flex-direction: column;
  }

  .why-choose-content {
    flex-direction: column-reverse;
  }
  .why-choose-info-div {
    min-width: 300px;
    max-width: 100%;
    height: 200px;
  }
  .technology-section-content {
    background-color: white;
    background-image: none;

    /* padding: 0px !important; */
  }
  .web-tech-stack {
    padding-bottom: 10px;
  }
}
