@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Open+Sans&display=swap');

    /* Remove the background from body */
  body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #f0f0f0;
    line-height: 1.7;
    padding-top: 70px;
    position: relative;
    z-index: 1;
    top: -20px !important;
  }

  /* Video background styling */
  #bg-video {
    position: fixed;
    right: 0;
    bottom: 0;  
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    object-fit: cover;
  }

  /* Overlay styling */

    .overlay {
      padding: 50px;
      min-height: 100vh;
    }

    .container {
      margin: auto;
      background: rgba(25, 25, 25, 0.55);
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }

    h1, h2 {
      font-family: 'Cinzel', serif;
      color: #f9c846;
      text-align: center;
    }

    h2 {
      margin-top: 40px;
    }

    .shiva-img {
      display: block;
      max-width: 300px;
      width: 100%;
      height: auto;
      margin: 30px auto;
      border-radius: 10px;
      border: 2px solid #f9c846;
      box-shadow: 0 0 20px #f9c846;
    }

    p {
      font-size: 18px;
      margin: 20px 0;
    }

    strong {
      color: #f9c846;
    }
    .content {
    background: rgba(0, 0, 0, 0.65); /* Transparent black */
    border: 2px solid #f9c846;       /* Golden border */
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 0 20px rgba(249, 200, 70, 0.4);
    text-align: center;
  }

  .content h1 {
    color: #f9c846;
    font-family: 'Cinzel', serif;
  }

  .content p {
    font-size: 18px;
    color: #f0f0f0;
  }

  .content button {
    padding: 10px 25px;
    background: #f9c846;
    color: #000;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .content button:hover {
    background: #e8b933;
  }

  .command {
    margin-top: 20px;
    font-size: 20px;
    color: #fff;
    font-style: italic;
  }
  
 .navbar {
      background-color: #333;
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      padding-right: 20px;
      padding-bottom: 20px;
      padding-left: 20px;
      position: relative;
    }

    .navbar .brand {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .navbar .nav-links {
      display: flex;
      gap: 20px;
    }

    .navbar .nav-links a {
      color: rgb(255, 196, 0);
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.2s ease;
    }

    .navbar .nav-links a:hover {
      color: #f0c040;
    }

    .navbar .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .navbar .menu-toggle div {
      width: 25px;
      height: 3px;
      background-color: white;
    }

    @media (max-width: 768px) {
      .navbar .nav-links {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        padding: 10px 20px;
      }

      .navbar .nav-links.active {
        display: flex;
      }

      .navbar .menu-toggle {
        display: flex;
      }
    }

.translate-container {
  display: flex;
  align-items: center;
}

#google_translate_element {
  transform: scale(0.8);
  transform-origin: left;
}
.translate-wrapper {
    color: black !important;
  }
.navbar .nav-links .translate-wrapper a:hover {
    color: #000000;
}
.navbar .nav-links .translate-wrapper a {
    color: rgb(17, 17, 17);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}
