  /* Hero Section */
  .hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
  }

  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    object-fit: cover;
    z-index: 0;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 31, 59, 0.5); /* Dark Navy transparent overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
  }

  .hero-overlay h1 {
    font-size: 3rem;
    margin: 0;
    color: var(--accent);
  }

  .hero-overlay p {
    font-size: 1.2rem;
    color: #e6f0fa;
  }

  @media (max-width: 768px) {
    .hero-overlay h1 {
      font-size: 2rem;
    }
    .hero-overlay p {
      font-size: 1rem;
    }
  }