#about {
  padding-top: 100px; /* Prevent navbar overlap */
}

/* HERO-STYLE BANNER */
.about-hero {
  position: relative;
  width: 100%;
  height: 50vh; /* half-height hero section */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../image/p2.jpg')
    center/cover no-repeat;
  margin: 0;
  padding: 0;
}

.about-hero h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.about-hero p {
  color: #f8f9fa;
  opacity: 0.9;
}

/* Hover Effects */
#about img:hover {
  transform: scale(1.03);
  transition: transform 0.4s ease-in-out;
}

#about .btn:hover {
  background-color: #E63946 !important;
  color: white !important;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

/* Card hover */
#about .shadow-sm:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
  transition: box-shadow 0.4s ease;
}

