.dots-img-right2 {
  position: absolute;
  top: 50%;
  right: 0;                 /* peeks out but won’t create scroll */
  transform: translateY(-50%);
  width: 70px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}


.hero-img {
  max-width: 450px;
  min-height: 500px;
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.mt-n150{
  margin-top: -150px;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .hero-img {
    display: block;         /* force d-block */
    max-width: 90%;         /* scale within screen */
    min-height: 300px;      /* shorter height for mobile */
    margin: 0 auto;   /* center + smaller overlap */
  }
}

.image-collage {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 380px; /* ensures enough height for overlap */
  margin-left: auto;
  margin-right: auto;
}

/* Purple square */
.image-collage .bg-square {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: #c4b5fd; /* light purple */
  border-radius: 12px;
  z-index: 0;
}

/* Common image styles */
.image-collage .img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1;
}

/* Image placement inside the column */
.image-collage .img-1 {
  top: -100px;
  left: 0;
  width: 350px;
  height: 300px;
}

.image-collage .img-2 {
  top: 20px;
  right: 0;
  width: 200px;
  height: 200px;
}

.image-collage .img-3 {
  bottom: -100px;
  right: 80px;
  width: 300px;
  height: 220px;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .image-collage {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .image-collage .bg-square {
    display: none; /* or keep it with relative positioning if you want */
  }

  .image-collage .img {
    position: static;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-bottom: 15px;
  }
}


.section-quote-wrapper {
    max-width: 500px;
    /* Adjust to get the desired line breaks */
    margin: 0 auto;
    /* Centers the text block */
    word-break: break-word;
}