 /* General Reset */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Roboto', sans-serif;
    background: #25303f;
    color: #ffffff;
    scroll-behavior: smooth;
  }

  /* Navbar */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: #161b22;
    padding: 10px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  .logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #00d8ff;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .logo:hover {
    transform: scale(1.1);
  }
  nav a {
    color: #00d8ff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  nav a:hover {
    color: #00b0d4;
  }

  .cart-icon {
    color: #00d8ff;
    font-size: 1.5rem;
    margin-left: 10px;
    cursor: pointer;
  }
  .cart-icon:hover {
    color: #00b0d4;
  }

  .menu {
    display: flex;
    gap: 20px;
  }

  .menu a {
    color: #00d8ff;
    text-decoration: none;
    font-size: 1rem;
  }

  .menu a:hover {
    color: #00b0d4;
  }

  /* Responsive Navbar */
  .menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #00d8ff;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .menu {
      display: none;
      flex-direction: column;
      background: #161b22;
      position: absolute;
      top: 60px;
      right: 20px;
      width: 200px;
      border: 1px solid #30363d;
      border-radius: 5px;
    }

    .menu.active {
      display: flex;
    }

    .menu-toggle {
      display: block;
    }
  }

  /* Hero Section */
  .hero {
    height: 100vh;
    position: relative;
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  .hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  .hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.1rem;
    margin-bottom: 10px;
  }
  .hero p {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .hero button {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    background: #00d8ff;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .hero button:hover {
    background: #00b0d4;
  }

  /* About Us Section */
  #about {
    padding: 50px 20px;
    text-align: center;
    background: #6f8098;
    color: #161b22;
    height: 400px;
  }
  #about img {
    width: 400px;
    /* border-radius: 30%; */
    margin-bottom: 20px;
  }
  #about p {
    max-width: 800px;
    margin: 20px auto;
  }

   /* Customer Reviews Section (Carousel) */
  .reviews {
    padding: 50px 20px;
    text-align: center;
  }
  .carousel {
    position: relative;
    max-width: 90%;
    margin: auto;
    overflow: hidden;
  }
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  .review {
    min-width: 100%;
    padding: 20px;
    text-align: center;
    background: #161b22;
    border-radius: 10px;
  }
  .review img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  .carousel-nav {
    margin-top: 10px;
  }
  .carousel-nav button {
    background: #00d8ff;
    color: #000;
    border: none;
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 0.9rem;
  }
  .carousel-nav button:hover {
    background: #00b0d4;
  }

  /* FAQ Section */
  .faq {
    padding: 50px 20px;
    background: #243b55;
    color: #ffffff;
  }
  .faq h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  .faq-item {
    margin-bottom: 20px;
  }
  .faq-item h3 {
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }
  .faq-item h3:hover {
    color: #00d8ff;
  }
  .faq-item p {
    margin-top: 10px;
    display: none;
    transition: all 0.3s ease;
  }

  /* Success Table Section */
  .success-table {
    padding: 50px 20px;
    background: #161b22;
    text-align: center;
  }
  .success-table h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  table {
    width: 90%;
    margin: auto;
    border-collapse: collapse;
    background: #0d1117;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  }
  th, td {
    padding: 15px;
    border: 1px solid #30363d;
    text-align: center;
  }
  th {
    background: #00d8ff;
    color: #000;
    font-size: 1rem;
  }
  td {
    font-size: 0.9rem;
  }
  table tr:hover {
    background: #161b22;
  }

  /* Form Section */
  .form-container {
    padding: 50px 20px;
    text-align: center;
    background: #161b22;
  }
  .form-container h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .form-container form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .form-container input,
  .form-container textarea,
  .form-container select {
    padding: 10px 15px;
    font-size: 1rem;
    border: 1px solid #30363d;
    border-radius: 5px;
    background: #0d1117;
    color: #ffffff;
  }
  .form-container input:focus,
  .form-container textarea:focus,
  .form-container select:focus {
    border-color: #00d8ff;
    outline: none;
  }
  .form-container button {
    padding: 10px 15px;
    font-size: 1rem;
    border: none;
    background: #00d8ff;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .form-container button:hover {
    background: #00b0d4;
  }

   /* Address Section */
   .address {
    padding: 50px 20px;
    background: #161b22;
    text-align: center;
  }
  .address h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .address p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  .email-icon {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    color: #00d8ff;
    text-decoration: none;
    font-size: 1.2rem;
  }
  .email-icon i {
    margin-right: 10px;
    font-size: 1.5rem;
  }
  .email-icon:hover {
    color: #00b0d4;
  }

  .report {
    padding: 50px 20px;
    background: #161b22;
  }


 /* Loader and Alert */
 .loader {
    display: none;
    margin: 20px auto;
    border: 5px solid #30363d;
    border-top: 5px solid #00d8ff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .alert {
    display: none;
    margin: 20px auto;
    padding: 10px;
    max-width: 500px;
    background: #00d8ff;
    color: #0d1117;
    border-radius: 5px;
    text-align: center;
  }

  /* Footer */
  footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    background: #0d1117;
    color: #888;
  }
  footer a {
    color: #00d8ff;
    text-decoration: none;
  }
  footer a:hover {
    text-decoration: underline;
  }