 /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      line-height: 1.6;
	display: grid;
	bacjground-size: cover;
	background-image: url('bg.jpeg');
	background-size: cover;
  	background-repeat: no-repeat;
 	background-position: center;
  	height: 100vh; /* Ensures the body takes up full viewport height
    }

    /* Navbar */
    header {
      background: #333;
      color: #fff;
      padding: 1rem;
    }

    .container {
      max-width: 1100px;
      margin: auto;
      padding: 0 20px;
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .nav h1 {
      font-size: 1.5rem;
    }

    .nav ul {
      list-style: none;
      display: flex;
    }

    .nav ul li {
      margin-left: 20px;
    }

    .nav ul li a {
      color: #fff;
      text-decoration: none;
    }
    .nav a:hover {
	background-color: green;
	color: white;

    }

    /* Hero */
    .hero {
      background: #f4f4f4;
      padding: 60px 20px;
      text-align: center;
    }

    .hero h2 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    /* Grid Section */
    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      padding: 40px 0;
    }

    .card {
      background: #fff;
      padding: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      text-align: center;
    }

    /* Footer */
    footer {
      background: #333;
      color: #fff;
      text-align: center;
      padding: 20px;
    }

    /* Responsive Breakpoints */
    @media (max-width: 768px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      .nav ul li {
        margin: 10px 0;
      }
    }

    @media (max-width: 500px) {
      .grid {
        grid-template-columns: 1fr;
      }

      .hero h2 {
        font-size: 1.5rem;
      }
    }

	 .features {
    display: flex;
    justify-content: center; /* Horizontal centering */
    align-items: center;     /* Vertical centering */
    background-color: white;
   
   
  }

	button {
	background-color: lightblue;
	color: black;
	border-radius: 20px;
	padding: 5px
}

	img {
	width: 25%;
	
}

	.logo {
	display: flex;
	justify-content: center; /* Horizontal centering */
	padding: 20px;
	background-color: white;
	background-position: fixed;

}

	.description {
	display: flex;
	background-color: white;
	justify-content: center; /* Horizontal centering */
	align-items: center;     /* Vertical centering */

	
}

	.parallax {
	

}