
.top{
  height: 30px;
  text-align: center;
  font-weight: bold;
  background-color: rgb(12, 12, 43);
  color: yellow;
}

    :root {
      --primary: #007acc;
      --secondary: #e6f4ff;
      --text: #1a1a1a;
      --background: #f4fbff;
      --accent: #005b96;
      --gradient: linear-gradient(90deg, #007acc, #00c6ff);
    }

    body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--background);
      color: var(--text);
      scroll-behavior: smooth;
    }

    .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;
      animation: fadeIn 1.5s ease-in-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .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: white;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 122, 204, 0.15);
      position: relative;
      z-index: 2;
    }

    .home-feature {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 60px;
      align-items: center;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
    }

    .home-feature.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .home-feature:nth-child(even) {
      flex-direction: row-reverse;
    }

    .home-feature img {
      flex: 0 0 280px;
      max-width: 100%;
      height: auto;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .home-feature img:hover {
      transform: scale(1.05);
    }

    .home-feature div {
      flex: 1;
      min-width: 260px;
    }

    h2 {
      font-size: 28px;
      color: var(--text);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    h2::after {
      content: "";
      display: block;
      height: 4px;
      width: 60px;
      background: var(--gradient);
      border-radius: 2px;
      margin-top: 5px;
      transition: width 0.3s;
    }

    .home-feature:hover h2::after {
      width: 100px;
    }

    p {
      font-size: 18px;
      line-height: 1.8;
      color: #444;
    }

    @media (max-width: 768px) {
      .home-feature {
        flex-direction: column !important;
        text-align: center;
      }
      .home-feature img {
        margin-bottom: 20px;
      }
    }


    /* --- 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;
  }
}
 