.hero-container {
  position: relative;
  font-family: roboto;
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../assets/images/native-app/hero.webp") center center / cover
    no-repeat;
  height: 91vh;
}

.hero-container .hero-content {
  width: 100%;
  margin-top: 40px;
}

.hero-container .hero-content .cont-1 {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.hero-container .hero-content .cont-2 {
  position: absolute;
  width: 50%;
  display: flex;
  justify-content: flex-end;
  right: 24px;
  bottom: 0;
}

.hero-container .hero-content .cont-1 .cont-head {
  font-weight: 600;
  color: white;
  margin-top: 40px;
  font-size: 56px;
  line-height: 60px;
}

.hero-container .hero-content .cont-1 .cont-desc {
  font-weight: 400;
  font-size: 24px;
  color: white;
  margin-top: 16px;
  margin-bottom: 16px;
}

.hero-container .hero-content .cont-1 .hero-buttons {
  justify-content: left;
}

.hero-container .hero-content .cont-1 .hero-buttons .hero-button-1 {
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 40px;
}

@media (max-width: 768px) {
  .hero-container {
    height: 100vh;
    justify-content: center;
    align-items: start;
    padding: 10px;
  }

  .hero-container .hero-content .cont-1 {
    padding: 10px;
    padding-top: 60px;
    width: 100%;
    text-align: center;
  }

  .hero-container .hero-content .cont-1 .cont-head {
    width: 100%;
    font-size: 28px;
    line-height: 35px;
  }

  .hero-container .hero-content .cont-1 .cont-desc {
    font-size: 18px;
  }

  .hero-container .hero-content .cont-2 {
    width: 100%;
  }
}

.contaner {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
  backdrop-filter: blur(0);
  border-radius: 20px;
  padding: 40px;
  padding-top: 0px;
  box-shadow: none;
}

.faq-container {
  width: 100%;
  margin: 0;
  background: transparent;
  backdrop-filter: blur(0);
  border-radius: 20px;
  box-shadow: none;
  padding: 40px 80px;
  font-family: roboto;
}

.faq-container .block-1 {
  font-weight: 600;
  font-size: 38px;
  text-align: center;
}

.faq-container .block-2 {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}

.faq-container .block-3 {
  margin-top: 40px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  padding-bottom: 15px;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.349);
}

.accordion-item:hover {
  box-shadow: none;
  transform: none;
}

.accordion-header {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: none;
  background-color: #f5f6f7;
}

.accordion-title {
  font-family: roboto;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #2d3748;
}

.accordion-header.active {
  color: #373737;
}

.accordion-header .accordion-icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../assets/icons/java-app/Chevron down.svg") no-repeat center
    center;
  background-size: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-header.active .accordion-icon::before {
  transform: rotate(180deg);
}

.accordion-header.active .accordion-icon {
  transform: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  will-change: max-height, padding;
  background-color: #f5f6f7;
}

.accordion-content.active {
  max-height: 500px;
  padding: 20px;
  padding-top: 5px;
}

.accordion-text {
  font-family: roboto;
  font-weight: 400;
  font-size: 20px;
  color: black;
  line-height: 1.6;
}

.loading {
  text-align: center;
  padding: 40px;
  color: #718096;
  font-size: 1.1rem;
}

.error {
  text-align: center;
  padding: 40px;
  color: #e53e3e;
  background: #fed7d7;
  border-radius: 12px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contaner {
    margin: 10px;
    padding: 20px;
  }

  .accordion-header {
    padding: 16px;
  }

  .accordion-content.active {
    padding: 16px;
  }
}

.grad-text {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: default;
  transition: all 0.3s ease;
  text-align: center;
  background-color: white;
}

.grad-text p {
  background: linear-gradient(to right, #1db1c6, #1ccc97);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.spec-card,
.text-card,
.title-card {
  transition: all ease 0.3s;
}

.spec-card {
  background-color: white;
}

.spec-card:hover {
  background-color: #263238;
}

.spec-card:hover .title-card {
  color: white;
}

.spec-card:hover .text-card {
  color: white;
}

.spec-card:hover .title-img img {
  filter: brightness(0) invert(1);
}

.light-blue-btn {
  color: #23aea77e;
  background-color: #eff7f686;
  padding: 10px 100px;
  border: 2px solid #37b5b181;
  border-radius: 9px;
  transition: all ease 0.3s;
}

.light-blue-btn:hover {
  color: #23aea7;
  background-color: #eff7f6;
  padding: 10px 150px;
  border: 2px solid #37b5b1;
  transform: scale(1.2);
}

@media (max-width: 768px) {

  .light-blue-btn {
    transform: scale(0.9);
  padding: 10px 60px;
}
 
.light-blue-btn:hover {
  transform: scale(1.1);
} 
}


.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 10px;
  /* start stationary, then move with delay using animation-delay */
  animation: slide-left var(--duration, 25s) linear infinite;
  animation-delay: var(--delay, 1s);
}

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

.carousel-slide {
  flex: 0 0 auto;
  width: clamp(140px, 18vw, 220px);
  height: clamp(70px, 10vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: background-color 0.25s ease;
  border-radius: 9px;
}

.carousel-slide img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.carousel-slide:hover {
  background: #f5f5f5;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.tabs-list {
  width: 100%;
  display: flex;
  gap: 4px;
  justify-content: space-between;
}

.tabs-list .tab {
  padding: 12px;
  border-radius: 9px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: #373737;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tabs-list .tab:hover {
  background: #e9e9ef;
}

.tabs-list .tab.active {
  background: #4caf4f;
  color: #ffffff;
}

.tabs-panels {
  border-radius: 9px;
  padding: 36px;
  margin-top: 12px;
  width: 100%;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.card-lite {
  display: flex;
  justify-content: center;
}

.card-lite img {
  object-fit: contain;
}

@media (max-width: 768px) {
  .faq-container {
    width: 100%;
    margin: 0;
    background: transparent;
    backdrop-filter: blur(0);
    border-radius: 20px;
    box-shadow: none;
    padding: 10px 20px;
    font-family: roboto;
  }

  .faq-container .block-1 {
    font-size: 28px;
  }

  .faq-container .block-2 {
    font-size: 16px;
  }

  .accordion-title {
    font-size: 14px;
    line-height: 1.4;
  }

  .accordion-text {
    font-family: inter;
    font-weight: 500;
    font-size: 14px;
  }

  .accordion-content.active {
    padding-top: 0px;
  }
}

.form-container {
  padding: 40px;
  margin: 16px 0px;
  background-color: #263238;
  font-family: roboto;
}

.form-container .block-1 {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-container .block-1 .block-1-1 {
  font-weight: 600;
  font-size: 38px;
  text-align: center;
}

.form-container .block-1 .block-1-2 {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  width: 85%;
}

.form-container .block-2 {
  width: 100%;
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.form-container .block-2 .block-1-1 {
  width: 50%;
  display: flex;
  flex-direction: column;
  border-radius: 9px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 40px;
  color: white;
}

.form-container .block-2 .block-1-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  padding: 16px;
  padding-top: 32px;
}

.form-container .block-2 .block-1-1 .block-cont-1 {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 40px;
}

.form-container .block-2 .block-1-1 .block-cont-3 {
  font-size: 20px;
  font-weight: 400;
  margin: 10px 0px;
}

.form-container .block-2 .block-1-1 .block-cont-2 {
  display: flex;
  margin-top: 40px;
}

.form-container .block-2 .block-1-1 .block-cont-2 .cont-1 {
  width: 10%;
}

.form-container .block-2 .block-1-1 .block-cont-2 .cont-1 img {
  height: 45vh;
}

.form-container .block-2 .block-1-1 .block-cont-2 .cont-2 {
  display: flex;
  flex-direction: column;
  width: 90%;
}

.form-container .block-2 .block-1-1 .block-cont-2 .cont-2 .content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 20vh;
}

.form-container
  .block-2
  .block-1-1
  .block-cont-2
  .cont-2
  .content
  .content-head {
  font-weight: 600;
  font-size: 22px;
}

.form-container
  .block-2
  .block-1-1
  .block-cont-2
  .cont-2
  .content
  .content-desc {
  font-weight: 400;
  font-size: 18px;
}

.form-container .block-2 .block-1-2 {
  gap: 15px;
}

.form-container .block-2 .block-1-2 .input {
  margin-bottom: 16px;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: white;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-container .block-2 .block-1-2 .input-option {
  margin-bottom: 16px;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: white;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-container .block-2 .block-1-2 .input-textarea {
  margin-bottom: 16px;
  width: 100%;
  padding: 14px 8px;
  background-color: white;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-container .block-2 .block-1-2 .input input {
  width: 100%;
  outline: none;
}

.form-container .block-2 .block-1-2 .input input::placeholder {
  color: black;
}

.form-container .block-2 .block-1-2 .input-option select {
  width: 100%;
  outline: none;
}

.form-container .block-2 .block-1-2 .input-textarea textarea {
  width: 100%;
  height: 96px;
  outline: none;
}

.form-container .block-2 .block-1-2 .input-textarea textarea::placeholder {
  color: black;
}

.form-container .block-2 .block-1-2 .block-terms {
  margin-bottom: 32px;
  color: white;
  font-weight: 400;
  font-size: 16px;
}

.form-container .block-2 .block-1-2 .block-submit {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  width: fit-content;
  color: white;
  padding: 16px 50px;
  background-color: #4caf4f;
  transition: all ease 0.3s;
}

.form-container .block-2 .block-1-2 .block-submit:hover {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .form-container {
    padding: 10px;
    padding-bottom: 40px;
  }

  .form-container .block-1 .block-1-1 {
    font-size: 28px;
    line-height: 30px;
    margin-top: 10px;
  }

  .form-container .block-1 .block-1-2 {
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
  }

  .form-container .block-2 {
    flex-direction: column;
  }

  .form-container .block-2 .block-1-1 {
    width: 100%;
    padding: 10px;
  }

  .form-container .block-2 .block-1-2 {
    width: 100%;
    padding: 15px;
    background-color: white;
  }

  .form-container .block-2 .block-1-1 .block-cont-1 {
    font-size: 28px;
    line-height: 30px;
  }

  .form-container .block-2 .block-1-1 .block-cont-2 {
    gap: 10px;
  }

  .form-container .block-2 .block-1-1 .block-cont-2 .cont-1 img {
    height: 50vh;
  }

  .form-container .block-2 .block-1-1 .block-cont-2 .cont-2 .content {
    height: 23vh;
  }

  .form-container
    .block-2
    .block-1-1
    .block-cont-2
    .cont-2
    .content
    .content-head {
    font-size: 18px;
  }

  .form-container
    .block-2
    .block-1-1
    .block-cont-2
    .cont-2
    .content
    .content-desc {
    font-size: 16px;
  }

  .form-container .block-2 .block-1-2 .block-terms {
    color: black;
    font-size: 14px;
  }

  .form-container .block-2 .block-1-2 .block-submit {
    width: 100%;
    justify-content: center;
  }
}

.service-1 {
  font-size: 28px;
}

.service-2 {
  font-size: 38px;
}

.service-3 {
  font-size: 20px;
}

.solution-heading {
  font-size: 24px;
}

.solution-desc {
  font-size: 20px;
}

.service-heading {
  font-size: 24px;
}

.service-desc {
  font-size: 18px;
}

.green-bar {
  width: 10%;
}

.desktop-width {
  width: 90%;
}

.steps-title {
  font-size: 76px;
}

.service-height {
  height: 50vh;
}

.consulting-height {
  height: 70vh;
}

.service-width {
    width: 23%;
  }

@media (max-width: 768px) {
  .service-1 {
    font-size: 24px;
  }

  .service-2 {
    font-size: 28px;
  }

  .service-3 {
    font-size: 16px;
  }

  .service-heading {
    font-size: 22px;
  }

  .service-desc {
    font-size: 16px;
  }

  .solution-heading {
    font-size: 20px;
  }

  .solution-desc {
    font-size: 18px;
  }

  .green-bar {
    width: 25%;
  }

  .desktop-width {
    width: 100%;
  }

  .steps-title {
    font-size: 54px;
  }

  .service-height {
    height: fit-content;
  }

  .consulting-height {
    height: fit-content;
  }

  .service-width {
    width: 46%;
  }

}
