.transformation-container {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0;
  gap: 40px;
  justify-content: center;
  margin-inline: auto;
}

.transformation-layout {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
}

.transformation-left-section {
  background: #0B1D37;
  flex: 1;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 30px;
}

.transformation-left-section h2 {
  color: #F5F5F5;
  font-size: 46px;
  letter-spacing: -2%;
  font-family: 'Space Grotesk', sans-serif;
  font: bold;

  /* font-size: 3.5rem; */
  margin-bottom: 10px;
}

.transformation-left-section p {
  color: #F5F5F5;
  font-size: 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  /* light */
  line-height: 1.2;
}

/* Right secton */
.transformation-right-section {
  flex: 1;
  background: #F5F7FA;
  border-radius: 30px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  flex-direction: column;
}

.transformation-carousel-container {
  background: #F5F7FA;
  border: none;
  border-radius: 25px;
  width: 100%;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}

.transformation-right-tile {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.transformation-right-tile.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.transformation-right-tile h2 {
  margin-bottom: 30px;
  color: #0F1113;
  letter-spacing: -2%;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: bold;
  font-size: 48px;
  text-align: center;
}

.transformation-right-tile p {
  color: #0F1113;
  font-size: 36px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
  /* margin: 100px; */
  padding-top: 50px;
}

.transformation-right-tile.clickable {
  cursor: pointer;
}

.transformation-right-tile.clickable:hover {
  transform: translateY(-5px);
  transition: all 0.3s;
}

/* Dots */
.transformation-dots-container {
  display: flex;
  width: 100%;
  margin-bottom: 80px;
}

.transformation-dots-spacer {
  flex: 1;
}

.transformation-dots-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.transformation-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 10px;
  gap: 12px;
}

.transformation-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #959499;
  cursor: pointer;
  transition: background-color 0.3s;
}

.transformation-dot.active {
  background-color: #000;
}

.transformation-btn {
  background: #FFB300;
  color: #0F1113;
  border: none;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  align-self: flex-start;
  padding: 18px 40px;
  transition: background 0.3s;
}

.transformation-btn:hover {
  opacity: 0.85;
}