* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    body {
      background: #f5f5f5;
      color: #333;
      scroll-behavior: smooth;
    }

    /* Navbar */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
      background: rgba(0,0,0,0.7);
      color: #fff;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
    }
    nav h1 {
      font-size: 24px;
      color: #ff9800;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    nav ul li a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: 0.3s;
    }
    nav ul li a:hover {
      color: #ff9800;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      background: url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-align: center;
      padding: 0 20px;
      position: relative;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.5);
    }
    .hero h1 {
      font-size: 55px;
      margin-bottom: 15px;
      z-index: 1;
    }
    .hero p {
      font-size: 22px;
      margin-bottom: 25px;
      z-index: 1;
    }
    .hero button {
      padding: 14px 35px;
      border: none;
      background: #ff9800;
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
      z-index: 1;
    }
    .hero button:hover {
      background: #fff;
      color: #ff9800;
      transform: scale(1.05);
    }

    /* Sections */
    section {
      padding: 70px 50px;
      text-align: center;
    }
    section h2 {
      font-size: 32px;
      margin-bottom: 20px;
      color: #ff9800;
    }
    section p {
      max-width: 700px;
      margin: auto;
      font-size: 18px;
      line-height: 1.6;
    }

    /* Packages Section */
    .packages {
      display: flex;
      gap: 25px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 30px;
    }
    .card {
      background: #fff;
      padding: 20px;
      width: 280px;
      border-radius: 12px;
      box-shadow: 0px 6px 15px rgba(0,0,0,0.1);
      transition: 0.3s;
    }
    .card img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 15px;
    }
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
    }
    .card h3 {
      margin-bottom: 10px;
      color: #ff9800;
    }

    /* Contact Section */
    form {
      max-width: 500px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    input, textarea {
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
    }
    button.submit-btn {
      background: #ff9800;
      color: #fff;
      border: none;
      padding: 14px;
      font-size: 18px;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s;
    }
    button.submit-btn:hover {
      background: #e68900;
    }

    /* Footer */
    footer {
      background: #111;
      color: #fff;
      text-align: center;
      padding: 20px;
      margin-top: 30px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        gap: 10px;
      }
      .hero h1 {
        font-size: 35px;
      }
      .hero p {
        font-size: 18px;
      }
      .packages {
        flex-direction: column;
        align-items: center;
      }
    }
  