

   
    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }
 
   /* Hero Section */
    .hero {
      height: 100vh;
      background: url("https://picsum.photos/1920/1080?grayscale") no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }

    /* Overlay for better text visibility */
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.4);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
      animation: fadeUp 2s ease-in-out;
    }

    .hero h1 {
      font-size: 3rem;
      margin: 0 0 20px;
      font-weight: bold;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .hero a {
      display: inline-block;
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: bold;
      text-decoration: none;
      background: #f59f00;
      color: black;
      border-radius: 5px;
      transition: background 0.3s ease;
    }

    .hero a:hover {
      background: #d98200;
    }

    /* Animation */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  




    /* Sticky Header */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: #4c566a; /* Orange background */
      padding: 15px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    header h1 {
      margin: 0;
      font-size: 22px;
      font-weight: bold;
      color: white;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 25px;
    }

    nav ul li {
      position: relative;
    }

    nav ul li a {
      text-decoration: none;
      color: white;
      font-weight: bold;
      padding: 8px 10px;
      display: block;
      transition: background 0.3s;
    }

    nav ul li a:hover {
      background: rgba(0,0,0,0.1);
      border-radius: 4px;
    }

    /* Dropdown Menu */
    nav ul li ul {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fcc419;
      min-width: 180px;
      list-style: none;
      margin: 0;
      padding: 0;
      display: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }

    nav ul li ul li a {
      padding: 10px;
      font-weight: bold;
      color: black;
    }

    nav ul li ul li a:hover {
      background: rgba(0,0,0,0.1);
    }

    nav ul li:hover ul {
      display: block;
    }

    /* Content to scroll */
    .content {
      height: 2000px;
      padding: 20px;
    }
  