
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Learn Pass Drive</title>
  <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap" rel="stylesheet">
  <style>  
* { margin: 0; padding: 0; box-sizing: border-box; }
	  
img.thatimage
{
    max-width: 100%;
    min-width: 300px;
    height: auto;
}
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #121212;
      color: #e0e0e0;
    }

    nav {
      background: rgba(0, 0, 0, 0.85);
      padding: 20px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 4px 10px rgba(0,0,0,0.6);
    }
    nav .logo {
      font-weight: 700;
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 10px;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 28px;
      justify-content: center;
    }
    nav ul li a {
      text-decoration: none;
      color: #e0e0e0;
      font-weight: 600;
      font-size: 1rem;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #ffeb3b;
    }

    header {
      background: url( "../images/background.png") no-repeat center /cover;
      color: white;
      text-align: center;
      padding: 160px 20px 100px;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
      position: relative;
      margin-top: 20px;
    }
    header::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
    }
    header h1,
    header p,
    header .btn-primary {
      position: relative;
      z-index: 1;
    }
    header h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }
    header p {
      font-size: 1.1rem;
      margin: 15px 0;
    }
    .btn-primary {
      padding: 10px 24px;
      background: #ff7043;
      color: white;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s ease;
    }
    .btn-primary:hover {
      background: #ff5722;
    }
    .section {
      padding: 60px 16px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 16px;
    }
    .features, .courses {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .card {
      background: #2c2c2c;
      border-radius: 16px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      padding: 24px;
      text-align: center;
      transition: transform 0.3s ease;
    }
    .card:hover {
      transform: translateY(-6px);
    }
    .card h3 {
      color: #ff7043;
      margin-bottom: 10px;
    }
    .testimonials {
      background: rgba(51, 51, 51, 0.85);
      padding: 60px 16px;
      text-align: center;
      border-radius: 16px;
      margin: 40px auto;
      max-width: 1200px;
    }
    .testimonial {
      max-width: 90%;
      margin: 0 auto;
      font-style: italic;
      font-size: 1.1rem;
    }
    footer {
      background: #000;
      color: white;
      text-align: center;
      padding: 24px 16px;
    }
    footer p {
      font-size: 0.85rem;
    }
    footer a {
      color: #ff7043;
      text-decoration: underline;
    }
    @media (min-width: 768px) {
      header h1 { font-size: 3rem; }
      header p { font-size: 1.25rem; }
      .testimonial { font-size: 1.2rem; max-width: 700px; }
    }
 </style>