/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100px; /* space for navbar */
  padding-bottom: 0; /* optional */
}

/* Make main image fully responsive */
.hero-section .main-hero-image {
  width: 99%;
  height: auto;
  display: block;
  max-height: 700px; /* Optional: Limit max height */
  object-fit: cover;
  margin-left: 10px;
  margin-right: 30px;
}

/* Background shapes positioning */
.hero-section .background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* background shapes won't interfere with clicks */
}

.hero-section .bg-shape {
  position: absolute;
  /* customize shapes positions */
}

.hero-section .bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px; /* slightly smaller top padding on mobile */
  }

  .hero-section .main-hero-image {
    max-height: 400px; /* smaller on mobile */
    margin-left: 2px;
  }
}

/* Director section styles */
.director-section {
  padding: 60px 0;
  background: #fff;
}
.director-section .section-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.director-section .lead {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}
.director-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}
.director-content p {
  color: #4a4a4a;
  margin-bottom: 0.9rem;
}
.director-section .btn {
  border-radius: 10px;
  padding: 0.55rem 1rem;
}
@media (max-width: 992px) {
  .director-section { padding: 40px 0; }
  .director-section .section-title { text-align: center; }
  .director-figure figcaption { display: none; }
}


