
.abouthero {
  background: url("../Images/About_Hero.png") no-repeat center center;
  background-size: cover;
  height: 60vh; /* Adjust height */
  position: relative;
  color: white;
  text-align: center;
}

/* Dark transparent overlay for better readability */
.abouthero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.about-heading {
  font-size: 3rem;
  font-weight: bold;
  z-index: 2;
  position: relative;
}

/* Center the heading vertically and horizontally */

.vision-design-custom {
  background: url('image.jpg') no-repeat center center;
  background-size: cover;
  padding: 50px 4vw;
  border-radius: 13px;
  margin-bottom: 40px;
}

.vision-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.vision-img-col {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.vision-img-col img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 16/10;
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
}

.vision-text-col {
  flex: 1.2 1 290px;
  background: transparent;
}

.vision-label, .design-label {
  font-size: 0.98rem;
  color: #b0853d;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
  display: block;
}

.vision-title {
  font-size: 2rem;
  font-weight: bold;
  color: #27344b;
  margin-bottom: 11px;
}

.vision-text {
  font-size: 1.1rem;
  color: #57595f;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .vision-row {
    flex-direction: column;
    gap: 17px;
  }
  .vision-img-col img {
    max-width: 98vw;
  }
  .vision-design-custom {
    padding: 28px 2vw;
  }
  .vision-title {
    font-size: 1.4rem;
  }
}
/* About Section Styling ------------------> */






/* Responsive text scaling */
@media (max-width: 992px) { /* Tablets */
  .about-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) { /* Mobiles */
  .abouthero {
    height: 40vh;
  }
  .about-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) { /* Small Mobiles */
  .about-heading {
    font-size: 1.5rem;
  }
}
