/* 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 {
  
  display: block;
  max-height: 700px; /* Optional: Limit max height */
  object-fit: cover;
  margin-left: 5px;
  margin-right: 50px;
}

/* 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;
  }
}

/* Feature Card Animation Styles */
.feature-card-animated {
  position: relative;
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}

/* Hover Lift Effect */
.feature-card-animated:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Top Highlight Bar Animation */
.top-highlight {
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #47882a;
  transition: width 0.35s ease;
}

.feature-card-animated:hover .top-highlight {
  width: 100%;
}

/* Icon Animation */
.feature-icon-animated {
  font-size: 42px;
  color: #47882a;
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Icon Hover Bounce Effect */
.feature-card-animated:hover .feature-icon-animated {
  transform: scale(1.18) rotate(3deg);
  color: #2f601c;
}

/* Title Styling */
.feature-card-animated h5 {
  color: #47882a;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 12px;
}
.custom-row-gap > [class*="col-"] {
  margin-bottom: 10px;
}
  .info-box, .feature-card, .heritage-box {
    border-radius: 12px;
    background: #fff;
  }
  .feature-icon {
    font-size: 30px;
    color: #47882a;
    margin-bottom: 15px;
  }
  .section-title {
    font-size: 32px;
    font-weight: 700;
  }

/* 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; }
}

