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

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

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

.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: 500;
  font-size: 24px;
  color: white;
  margin-top: 16px;
  width: 95%;
}

@media (max-width: 768px) {
  .hero-container {
    background: url("../assets/images/system-integration/hero.webp") center left /
      cover no-repeat;
    height: 60vh;
    justify-content: center;
    align-items: end;
    padding: 10px;
  }

  .hero-container .hero-content .cont-1 {
    padding: 10px;
    width: 100%;
  }

  .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;
    font-weight: normal;
    line-height: 30px;
  }
}

.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;
}

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

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

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

.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: 1px solid black;
}

.accordion-header.active {
  background-color: #263238;
  color: white;
  border-bottom: none;
}

.accordion-header:hover {
  background-color: #263238;
  color: white;
}

.accordion-title {
  font-family: inter;
  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;
}

.accordion-header .accordion-icon::before {
  content: "+";
}
.accordion-header.active .accordion-icon::before {
  content: "-";
  color: white;
}

.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;
}

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

.accordion-text {
  font-family: inter;
  font-weight: 400;
  font-size: 20px;
  color: white;
  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;
  }
}

.projects-container {
  overflow: hidden;
  position: relative;
}

/* .projects-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 12px;
}

.projects-track > div {
  flex: 0 0 31% !important;
  width: 31% !important;
  min-width: 31% !important;
} */
.projects-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.projects-track > div {
  flex: 0 0 calc(100% / 3.1); /* default for large screens */
}
@media (max-width: 1023px) {
  .projects-track > div {
    flex: 0 0 calc(100% / 2.1);
  }
}
@media (max-width: 767px) {
  .projects-track > div {
    flex: 0 0 100%;
  }
}

.projects-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding: 0 40px;
}

.projects-arrows {
  display: flex;
  gap: 10px;
}

.projects-arrow {
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.projects-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tech-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.tech-btn:hover {
  color: #4caf4f;
}

.hover-dark {
  background-color: #ffffff;
}

.hover-dark:hover {
  background-color: #263238;
  transition: all ease 0.3s;
}

.hover-dark:hover .blog-title {
  color: #ffffff;
  transition: all ease 0.3s;
}

.step-slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: white;
}

.step-slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
  gap: 20px;
  padding: 0 10px;
}

.step-slide {
  flex: 0 0 31.25%;
  width: 31.25%;
  height: 75vh;
  border-radius: 16px;
}

@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: 60px;
  margin-top: 16px;
  margin-bottom: 16px;
  background: url("../assets/images/system-integration/contact-bg.webp") center
    center / cover no-repeat;
  height: 160vh;
  font-family: roboto;
}

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

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

.form-container .block-1 .block-1-2 {
  font-weight: 400;
  font-size: 20px;
  color: #373737;
  text-align: center;
  margin-top: 8px;
  width: 85%;
}

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

.form-container .block-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 9px;
  padding: 16px;
  padding-top: 32px;
  margin: 0px auto;
}

.form-container .block-2 div {
  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 input {
  width: 100%;
  outline: none;
}

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

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

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

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

.form-container .block-2 .block-submit {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  width: fit-content;
  color: white;
  padding: 12px 36px;
  background-color: #4caf4f;
}

.form-container .block-2 .block-terms {
  margin-bottom: 32px;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  margin: none;
  padding: none;
  border: none;
}

@media (max-width: 768px) {
  .form-container {
    padding: 20px;
    height: auto;
  }

  .form-container .block-1 .block-1-1 {
    font-size: 28px;
    text-align: center;
    line-height: 30px;
  }

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

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

  .form-container .block-2 .block-cont .block-submit {
    margin: auto;
  }
}

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

.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: 38px;
}

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

  .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: 16px;
  }

  .green-bar {
    width: 25%;
  }

  .desktop-width {
    width: 100%;
  }

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

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
