
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body, html {
      height: 100%;
      background: url('../Assets/background.jpg') no-repeat center center fixed;
      background-size: cover;
      color: white;
    }

    header {
      backdrop-filter: blur(20px);
      background-color: rgba(0, 0, 0, 0.7);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    header h1 {
      font-size: 28px;
      font-weight: 700;
    }

    nav a {
      margin-left: 25px;
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #00e0ff;
    }

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 70px;
  right: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  padding: 10px;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}

.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.mobile-nav.open {
  display: flex;
}



    .hero {
      height: 90vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(5px);
      padding: 20px;
    }

    .hero h2 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .hero button {
      height: 60px;
      padding: 10px 25px;
      background: #00e0ff;
      border: none;
      border-radius: 30px;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .hero button:hover {
      background: #00bcd4;
    }

    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 60px 40px;
      background-color: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.05);
      padding: 20px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-8px);
    }

    .feature-card h3 {
      margin-bottom: 15px;
      font-size: 1.5rem;
    }

    .feature-card p {
      font-size: 1rem;
      opacity: 0.85;
    }

    .footer {
      text-align: center;
      padding: 30px;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(6px);
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
     
     
      .hero h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


  