
body {
    background: url('place.jpeg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    font-family: sans-serif;
}
          
   body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 76, 76, 0.051);
    z-index: -1; 
    pointer-events: none; /* ✅ This allows clicks to pass through */
}
    .glass-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
    header {
      background-color: #003366;
      color: white;
      padding: 20px;
      text-align: center;
    }
    .tabs {
      display: flex;
      justify-content: center;
      margin-top: 20px;
      gap: 20px;
      flex-wrap: wrap;
    }
    .tabs button {
      background-color: #e2e8f0;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 5px;
      font-weight: bold;
    }
    .tabs button:hover {
      background-color: #cbd5e1;
    }
    .content {
      display: none;
      max-width: 900px;
      margin: 20px auto;
      background-color: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px #ccc;
    }
    .content.active {
      display: block;
    }
    
    .glass-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
 