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

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

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

.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-left: 32px;
  padding-right: 32px;
}

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

  .hero-container .hero-content .cont-1 {
    padding: 10px;
    padding-bottom: 60px;
    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;
  }
}

.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);
  background-color: #263238;
  color: white;
}

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

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

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

.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: #f1f1f1;
}

.accordion-text {
  font-family: roboto;
  font-weight: 500;
  font-size: 20px;
  color: #373737b6;
  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;
  }
}

.btm-border {
  border-bottom: 10px solid white;
  transition: all ease 0.3s;
}

.btm-border:hover {
  border-bottom: 10px solid #4caf4f;
}

.green-txt:hover .green-text {
  color: #4caf4f;
  transition: all ease 0.3s;
}

.green-txt {
  cursor: pointer;
}

.green-txt:hover .green-img img {
  filter: brightness(0) saturate(100%) invert(61%) sepia(28%) saturate(642%)
    hue-rotate(85deg) brightness(90%) contrast(92%);
  transition: filter 0.3s ease;
}

.tilt-cont:hover .tilt {
  transform: rotate(25deg);
  transition: all ease 0.3s;
}

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

.form-container {
  padding: 40px;
  margin-top: 16px;
  margin-bottom: 16px;
  background: url("../assets/images/custom-dashboard/contact-bg.webp") center
    center / cover no-repeat;
  font-family: roboto;
}

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

.form-container .block-1 .block-1-1 {
  font-weight: 600;
  font-size: 38px;
  width: 70%;
  line-height: 45px;
}

.form-container .block-1 .block-1-2 {
  font-weight: 400;
  font-size: 20px;
  margin-top: 16px;
  width: 85%;
}

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

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

.form-container .block-2 .block-1-1 .cont-1 {
  margin-bottom: 16px;
  padding-top: 4px;
  border-radius: 9px;
  background-color: white;
  width: 15%;
}

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

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

.form-container .block-2 .block-1-1 .cont-2 .content {
  display: flex;
  width: 45%;
}

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

.form-container .block-2 .block-1-2 {
  width: 50%;
  display: flex;
  flex-direction: column;
  font-family: roboto;
  font-size: 16px;
  font-weight: 400;
  border-radius: 9px;
  padding: 16px;
  padding-top: 32px;
  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: 40px 20px;
  }

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

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

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

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

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

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

  .form-container .block-2 .block-1-1 .cont-1 {
    margin-bottom: 16px;
    padding-top: 4px;
    width: 35%;
  }

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

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

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

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

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

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

/* .service-height {
  height: 30vh;
} */

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

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

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

  .service-4 {
    font-size: 14px;
  }
  .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;
  }

  /* .service-height {
    height: 40vh;
  } */
}
