.cloud-migration-banner-wrapper {
  gap: clamp(30px, 5vw, 100px);
}
.migration-img-wrapper {
  height: 455px;
  max-height: 455px;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.migration-img-wrapper .migration-img {
  height: 100%;
  width: 32%;
  max-height: 432px;
  border-radius: 20px;
  object-fit: cover;
}
.migration-img-wrapper .align-img-top {
  align-self: flex-start;
}
/* Counter_Section */
/* stats */

.statistics {
  width: 100%;
  background-color: var(--statistics-bg);
  padding-top: 43px;
  padding-bottom: 43px;
}

.statistics__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 5vw, 38px);
}

.statistics__numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}

.line {
  width: 1px;
  height: 28px;
  background-color: var(--text-color);
  border-radius: 2px;
}

/*----------------------------------------*/
/*                Accordion               */
/*----------------------------------------*/
.faqs-wrapper {
  display: flex;
  align-items: stretch;
  gap: clamp(30px, 5vw, 110px);
  justify-content: center;
  
}
.faqs-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  row-gap: clamp(20px, 5vw, 30px);
}
.faqs-content h1{
  text-align: center;
}
.faqs-content .app-btn{

  margin: auto  ;
}
.faqs-content h1 {
  margin-bottom: clamp(15px, 2vw, 25px);
}
.faqs-img-wrapper {
  max-height: 610px;
  width: 50%;
  border-radius: 24px;
  overflow: hidden;
}
.faqs-img-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.accordion .accordion-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.accordion .accordion-item .accordion-toggle-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px 28px;
  cursor: pointer;
}
.accordion .accordion-item .accordion-toggle-btn .accordion-title {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.5;
  font-family: var(--font-bold) !important;
  color: var(--dark);
}

.accordion .accordion-item .accordion-toggle-btn .toggle-icon {
  font-size: 1.25rem;
  color: var(--dark);
  transition: transform 0.3s ease;
}

.accordion .accordion-item .accordion-content {
  max-height: 0;
  /* padding-left: 0 20px 25px 28px; */
  /* transition: max-height 0.3s ease, padding 0.3s ease; */
}

.accordion .accordion-item .accordion-content p {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--dark);
}

.accordion-item.active .toggle-icon {
  transform: rotate(45deg); /* Rotate the "+" to "x" when active */
}

.accordion-item.active .accordion-content {
  max-height: 200px; /* Adjust based on content size */
  padding: 0 20px 25px 28px;
}

@media screen and (max-width: 1024px) {
  .accordion .accordion-item .accordion-toggle-btn {
    padding: 15px 20px;
  }
  .accordion-item.active .accordion-content {
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .migration-img-wrapper {
    height: 355px;
    max-height: 355px;
    width: 70%;
  }
  .migration-img-wrapper .migration-img {
    max-height: 332px;
  }
  .statistics__container {
    flex-direction: column;
  }
}
@media screen and (max-width: 680px) {
  .faqs-wrapper {
    flex-direction: column;
  }
  .faqs-content {
    width: 100%;
    align-items: center;
  }
  .faqs-img-wrapper {
    display: none;
  }
}
@media screen and (max-width: 576px) {
  .migration-img-wrapper {
    height: 255px;
    max-height: 355px;
    width: 100%;
  }
  .migration-img-wrapper .migration-img {
    max-height: 232px;
  }
}
