.contact-banner {
  position: relative;
  background: url('../images/pricing.jpg') center/cover no-repeat;
  height: 30vh;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 202, 138, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-banner h1 {
  color: #fff;
  font-size: 3rem;
  z-index: 1;
  font-weight: 600;
  text-transform: uppercase;
}

.who-we-are {
  padding: 5rem 2rem;
  background: #fff;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1200px;
  margin: auto;
  gap: 3rem;
  align-items: center;
}

/* Left Text Column */
.who-text h2 {
  font-size: 2.5rem;
  color: #000;
  margin-bottom: 0;
}

.who-text h2 span {
  color: #C3B092;
  font-style: italic;
}

.divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.line {
  width: 50px;
  height: 1px;
  background: #bdbdbd;
}

.scissor-icon {
  color: #bdbdbd;
  font-size: 1rem;
}

.intro {
  font-style: italic;
  margin-top: 1rem;
  font-size: 1rem;
  color: #444;
}

.main-para {
  margin: 2rem 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.last-para {
  font-size: 1rem;
  color: #555;
}

.who-slider img {
  height: 550px;
  object-fit: contain;
  border-radius: 3%;
}

.about-overlay-section {
  position: relative;
  background: url('../images/pricing.jpg') center/cover no-repeat;
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.about-overlay {
  position: absolute;
  /* background: rgba(255, 202, 138, 0.5); */
  inset: 0;
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

/* .about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-style: italic;
  color: #f1f1f1;
  margin: 0;
} */

.about-text {
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: #f2f2f2;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.about-text::before,
.about-text::after {
  font-size: 2rem;
  font-weight: bold;
  color: #d63384; /* pink accent */
}

/* Responsive */
@media (max-width: 768px) {
  .about-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}



/* Responsive Adjustments */
@media (max-width: 1024px) {
  .who-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .who-text h2 {
    font-size: 2rem;
  }

  .intro,
  .main-para,
  .last-para {
    text-align: center;
    font-size: 1rem;
    padding: 0 1rem;
  }

  .who-slider img {
    height: 350px;
  }
}

@media (max-width: 600px) {
  .who-we-are {
    padding: 3rem 1rem;
  }

  .who-text h2 {
    font-size: 1.7rem;
  }

  .divider {
    justify-content: center;
  }

  .main-para {
    font-size: 1rem;
    line-height: 1.6;
  }

  .who-slider {
    max-height: 400px;
  }

  .who-slider img {
    height: 400px;
  }
}
