
    :root {
      --primary: #1e3a8a;
      --secondary: #eef2ff;
      --text: #f0f0f0;
      --background: #0f172a;
      --accent: #3b82f6;
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--background);
      color: var(--text);
    }
.top{
  height: 30px;
  text-align: center;
  font-weight: bold;
  background-color: rgb(12, 12, 43);
  color: yellow;
}

    .hero {
      background-image: url("bg2.jpg");
      background-size: cover;
      background-position: center;
      color: white;
      padding: 120px 20px;
      text-align: center;
      position: relative;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: auto;
    }

    .hero h1 {
      font-size: 54px;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    .hero p {
      font-size: 22px;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
    }

    .container {
      max-width: 1000px;
      margin: -40px auto 0;
      padding: 60px 20px;
      background-color: #1e293b;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(30, 58, 138, 0.5);
      position: relative;
    }

    h2 {
      font-size: 28px;
      margin-top: 40px;
      color: var(--accent);
      position: relative;
    }

    h2::before {
      content: "";
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 60px;
      height: 4px;
      background-color: var(--accent);
      border-radius: 2px;
    }

    p, li {
      font-size: 18px;
      line-height: 1.8;
      color: #e5e7eb;
    }

    ul {
      margin-left: 20px;
    }

    /* Footer */

    /* --- Toggle Button Style --- */
.help-toggle {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #1e3a8a;
  color: #fff;
  border-radius: 50%;
  padding: 18px;
  font-size: 22px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.help-toggle:hover {
  transform: scale(1.1);
  background-color: #3b82f6;
}

/* --- Help Form Popup --- */
.help-form-container {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 300px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 9999;
  animation: slideInUp 0.4s ease;
}

.help-form-container h3 {
  margin-top: 0;
  font-size: 18px;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 15px;
}

.help-form-container input,
.help-form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.help-form-container textarea {
  height: 80px;
  resize: none;
}

.help-form-container button {
  background-color: #1e3a8a;
  color: #fff;
  border: none;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.help-form-container button:hover {
  background-color: #3b82f6;
}

/* --- Animation --- */
@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
 