.about-hero-sgv {
  position: relative;
  background-image: url('../images/sgv-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero-sgv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25));
  backdrop-filter: brightness(0.95) blur(2px); /* Soft blur + darken sikit */
  z-index: 1;
}

.hero-text-sgv {
  position: relative;
  z-index: 2;
  padding: 40px 30px;
  max-width: 900px;
  margin: 0 auto;
  color: #ffffff;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  background: rgba(0, 0, 0, 0.4); /* glassmorphism style */
  border-radius: 12px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-text-sgv h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
  color: #ffdddd;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-text-sgv h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff !important;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.hero-text-sgv p {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
  margin-bottom: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #e60000;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.cta-btn:hover {
  background-color: #b30000;
  transform: translateY(-2px);
}
