 html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    scroll-behavior: smooth; /* smooth scroll */
  }

  /* Video wrapper */
  .video-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
  }

  /* Background video */
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(10px) brightness(0.60);
    transform: scale(1.08);
  }

  /* Dark overlay */
  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
  }

  
  /* Foreground content */
  .content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 40px;
  }

  h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    line-height: 1.2;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
    font-family: 'Verdana', sans-serif;
  }

  h1 span {
    color: #FFD700;
  }

  /* Section styling */
  section {
    height: 100vh;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    scroll-margin-top: 80px; /* navbar offset for smooth scroll */
  }