
.egh-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.egh-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 40%, rgba(0,173,181,0.45) 100%);
  pointer-events: none;
}

.egh-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.egh-hero-inner.egh-align-right {
  justify-content: flex-end;
}

.egh-glass-card {
  max-width: 420px;
  padding: 30px 32px;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.egh-title {
  margin: 0 0 16px 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
}

.egh-description {
  margin: 0;
  line-height: 1.6;
  font-size: 15px;
}

.egh-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.egh-btn:hover {
  background: #ffffff;
  color: #000000;
}

/* basic responsiveness */
@media (max-width: 768px) {
  .egh-hero-inner {
    padding: 40px 20px;
  }
  .egh-glass-card {
    max-width: 100%;
  }
}
