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

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

.hero-container .hero-content .cont-1 {
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.hero-container .hero-content .cont-1 .cont-head {
  font-weight: 700;
  color: white;
  margin-top: 40px;
  width: 50%;
  font-size: 56px;
  line-height: 75px;
}

.hero-container .hero-content .cont-1 .cont-buttons {
  margin-top: 32px;
}

.hero-container .hero-content .cont-1 .cont-buttons .cont-button-1 {
  border: none;
  font-size: 16px;
  font-weight: 600;
  padding-left: 32px;
  padding-right: 32px;
}
.hero-sticker {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media (max-width: 768px) {
  .hero-container {
    background: url("../assets/images/odoo/hero-mobile.webp") center center /
      cover no-repeat;
    height: 40vh;
    padding: 10px;
  }

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

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

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

  .hero-container .hero-content .cont-1 .hero-sticker img {
    width: 110px;
  }
}

.ai-card {
  transition: all ease 0.3s;
  cursor: pointer;
  padding: 5px;
  border-radius: 12px;
}

.ai-card:hover {
  background: #f4f4f4;
  scale: 1.03;
}

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

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

.green-tilt {
  transition: ease 0.3s;
}

.solution:hover .green-tilt {
  transform: rotate(40deg);
}

/* Slider Styles */
.slider-container {
  max-width: 100%;
  margin: 40px auto;
  position: relative;
}

.slider-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.slides {
  position: relative;
  height: auto;
}

.slide {
  min-width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}

/* Navigation Styles */
.slider-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.nav-arrow {
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.nav-arrow:hover {
  transform: scale(1.1);
}

.nav-arrow:active {
  transform: scale(0.95);
}

/* Dots Container */
.dots-container {
  display: flex;
  gap: 12px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #000;
  transform: scale(1.2);
  box-shadow: 0 0 0 2px white, 0 0 0 4px #4caf4f;
}

.dot:hover {
  background: #000;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .slider-navigation {
    gap: 15px;
  }

  .nav-arrow {
    width: 40px;
    height: 40px;
  }

  .nav-arrow svg {
    width: 20px;
    height: 20px;
  }

  .dot {
    width: 6px;
    height: 6px;
  }
}

.contaner {
  width: 100%;
  max-width: none;
  margin: 0;
  background: transparent;
  backdrop-filter: blur(0);
  border-radius: 20px;
  padding: 40px 100px;
  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 {
  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 {
  background: transparent;
  padding: 20px 0;
  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;
}

.accordion-header:hover {
  background: transparent;
}

.accordion-header.active {
  background: transparent;
  color: inherit;
}

.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 .accordion-icon::before {
  content: "+";
}
.accordion-header.active .accordion-icon::before {
  content: "-";
}

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

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

.click-more {
  cursor: pointer;
  color: black;
  transition: all ease 0.3s;
}
.click-more:hover {
  color: #4caf4f;
}
.click-more:hover img {
  filter: brightness(0) saturate(100%) invert(59%) sepia(73%) saturate(458%)
    hue-rotate(81deg) brightness(95%) contrast(87%);
}

.blog-button {
  font-family: roboto;
  font-weight: 600;
  font-size: 20px;
  color: #00000060;
  cursor: pointer;
  transition: all ease 0.3s;
}

.blog-button:hover {
  color: #000 !important;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: inter;
  font-size: 20px;
  font-weight: 600;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: inter;
  font-size: 16px;
  font-weight: 300;
  line-height: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .blog-button {
    font-size: 16px;
  }

  .line-clamp-2 {
    font-size: 18px;
  }

  .line-clamp-3 {
    font-size: 14px;
  }
}

.read {
  transition: all 0.3s ease;
  cursor: pointer;
  color: #858585;
}

.read:hover {
  color: #4caf4f;
}

.read:hover img {
  filter: brightness(0) saturate(100%) invert(39%) sepia(72%) saturate(287%)
    hue-rotate(81deg) brightness(95%) contrast(90%);
}

.cs-btn {
  font-family: roboto;
  font-size: 20;
  font-weight: 500;
  color: #000000ad;
  border-radius: 25px;
  border-color: #00000080;
  padding: 10px 40px;
}

.form-container {
  font-family: roboto;
  padding: 40px;
  width: 100%;
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.form-container .block-1 {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  background: white;
}

.form-container .block-1 .block-1-1-desktop {
  display: flex;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #4caf4f;
  width: fit-content;
  color: #1d1d1d;
  padding: 12px 36px;
}

.form-container .block-1 .block-1-1-mobile {
  display: none;
}

.form-container .block-1 .block-1-2 {
  font-size: 38px;
  font-weight: 600;
  margin: 30px 0px;
  line-height: 35px;
}

.form-container .block-1 .block-1-3 {
  margin-bottom: 48px;
}

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

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

.form-container .block-1 .block-1-3 .block-cont-1 .block-span-1 {
  margin-right: 20px;
  margin-bottom: 16px;
}

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

.form-container .block-1 .block-1-3 .block-cont-2 .block-span-1 {
  margin-right: 20px;
}

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

.form-container .block-1 .block-1-4 {
  font-family: Roboto;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.form-container .block-1 .block-1-4 .block-cont-1 {
  display: flex;
  align-items: center;
}

.form-container .block-1 .block-1-4 .block-cont-2 {
  display: flex;
  align-items: center;
}

.form-container .block-1 .block-1-4 .block-cont-1 .block-div-1 {
  width: 20%;
}

.form-container .block-1 .block-1-4 .block-cont-1 .block-div-2 {
  width: 80%;
  text-align: left;
}

.form-container .block-1 .block-1-4 .block-cont-2 .block-div-1 {
  width: 20%;
}

.form-container .block-1 .block-1-4 .block-cont-2 .block-div-2 {
  width: 80%;
  text-align: left;
}

.form-container .block-1 .block-1-4 .block-cont-1 .block-div-2 .content-1 {
  font-size: 34px;
  color: #111111;
}

.form-container .block-1 .block-1-4 .block-cont-1 .block-div-2 .content-2 {
  font-size: 22px;
  color: #00000067;
}

.form-container .block-1 .block-1-4 .block-cont-2 .block-div-2 .content-1 {
  font-size: 34px;
  color: #111111;
}

.form-container .block-1 .block-1-4 .block-cont-2 .block-div-2 .content-2 {
  font-size: 22px;
  color: #00000067;
}

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

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

.block-input input::placeholder {
  color: black;
}

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

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

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

.form-container .block-2 .block-terms {
  margin-bottom: 32px;
  font-size: 16px;
}

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

@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: 10px;
  }

  .form-container {
    flex-direction: column;
    padding: 20px;
  }

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

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

  .form-container .block-1 .block-1-1-desktop {
    display: none;
  }

  .form-container .block-1 .block-1-1-mobile {
    display: flex;
    font-weight: 500;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #4caf4f;
    width: fit-content;
    color: #1d1d1d;
    padding: 12px 36px;
  }

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

  .form-container .block-1 .block-1-3 {
    width: 100%;
  }

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

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

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

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

  .form-container .block-2 .block-submit {
    display: flex;
    justify-content: center;
    font-size: 16px;
    width: 100%;
  }

  .form-container .block-1 .block-1-4 .block-cont-1 .block-div-1 {
    width: 25%;
  }

  .form-container .block-1 .block-1-4 .block-cont-1 .block-div-2 {
    width: 75%;
    padding-left: 10px;
  }

  .form-container .block-1 .block-1-4 .block-cont-2 .block-div-1 {
    width: 25%;
  }

  .form-container .block-1 .block-1-4 .block-cont-2 .block-div-2 {
    width: 75%;
    padding-left: 10px;
  }

  .form-container .block-1 .block-1-4 .block-cont-1 .block-div-2 .content-1 {
    font-size: 20px;
  }

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

  .form-container .block-1 .block-1-4 .block-cont-2 .block-div-2 .content-1 {
    font-size: 20px;
  }

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

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

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

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

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

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

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

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

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

.service-height {
  height: 25vh;
}

.solution-height {
  height: 25vh;
}

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

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

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

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

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

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

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

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

  .service-height {
    height: 20vh;
  }

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