.carousel-container {
  position: relative;
  width: 100vw;
  max-width: 2133px;
  /* max-width: 1600px; */
  height: clamp(200px, 30vw, 500px); /* Responsive height between 200px and 500px */
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  height: clamp(200px, 30vw, 500px);
}

.slide {
  position: relative;
  min-width: 100vw; /* Take up the full viewport width */
  height: 100%;
  max-height: 500px; /* The max height is still 500px */
  background-position: right center;
  background-size: auto 100%; /* Ensure the image height fills 100% */
  background-repeat: no-repeat;
  overflow: hidden;
}

.content {
  position: absolute;
  top: 50%;
  left: clamp(20px, 15.9375%, 255px); /* 15.9375% of 1600px is approximately 255px */
  transform: translateY(-50%); /* Vertically center the content */
  color: white;
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 39px; /* 108.333% */
  
}

.content.blue-text h2, .content.blue-text p {
  color: #09234A;
}
.content p {
  font-size: 28px;
  line-height: 34px;
}

.content h2 {
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.dots-container {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 30px;
  pointer-events: auto; /* Ensures that dots are clickable */
}

.dot {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #0099D8;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}
.carousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel .slide.active {
  opacity: 1;
}
.carousel .slide .content {
  opacity: 1 !important;
  transition: none !important;
}

/* Additional Media Query for smaller screens */
@media (max-width: 540px) {
  .carousel-container {
    height: 200px; /* Fixed height for very small screens */
  }
}

@media (max-width: 675px) {
  .content {
    display: none;
  }
}

@media (max-width: 767px) {
  .app-store-features-mobile {
    display: flex;
  }

  .app-store-features {
    display: none;
  }


}

/* Hide .app-store-features-mobile on tablet and desktop, show .app-store-features */
@media (min-width: 768px) {
  .app-store-features-mobile {
    display: none;
  }

  .app-store-features {
    display: flex;
  }
}

