
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    body {
      background: #f5f7fa;
      color: #333;
    }

    /* HEADER */
    header {
      background: white;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar {
      max-width: 1200px;
      margin: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
    }

.logo img{
  width: 120px;
  height: auto;
  display: block;
}

    .nav-links {
      display: flex;
      flex-direction: row !important;
      align-items: center;
      justify-content: center;
      gap: 30px;
      list-style: none;
    }

    .nav-links li {
      position: relative;
    }

    .nav-links a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: #d4af37;
    }

    /* Dropdown */
    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      margin-top: 10;
      padding-top: 10px;
      left: 0;
      background: white;
      width: 220px;
      border-radius: 10px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      display: none;
      overflow: hidden;
    }

    .dropdown-menu a {
      display: block;
      padding: 14px 18px;
      border-bottom: 1px solid #eee;
    }

    .dropdown-menu a:hover {
      background: #fcfcfc;
    }

    /* Desktop Dropdown Hover */
    @media (min-width: 769px) {
      .dropdown:hover .dropdown-menu,
      .dropdown-menu:hover {
        display: block;
      }
    }

.btn {
  text-decoration: none;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 7px 14px;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: 500;
}

.btn:hover {
  background: #d4af37;
  color: #081120;
}

    /* HERO */
    .hero {
      text-align: center;
      padding: 120px 20px;
    }

    .hero h1 {
      font-size: 52px;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 18px;
      color: #666;
      max-width: 700px;
      margin: auto;
      line-height: 1.6;
    }

    /* FOOTER */
    footer {
      background: #111827;
      color: #d1d5db;
      padding-top: 60px;
      margin-top: 60px;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      padding: 0 20px;
    }

    .footer-box h2,
    .footer-box h3 {
      color: white;
      margin-bottom: 20px;
    }

    .footer-box p,
    .footer-box li {
      line-height: 1.8;
      color: #9ca3af;
    }

    .footer-box ul {
      list-style: none;
    }

    .footer-box a {
      text-decoration: none;
      color: #9ca3af;
      transition: 0.3s;
    }

    .footer-box a:hover {
      color: white;
    }

    .newsletter {
      display: flex;
      margin-top: 15px;
    }

    .newsletter input {
      flex: 1;
      padding: 12px;
      border: none;
      outline: none;
      border-radius: 6px 0 0 6px;
    }

    .newsletter button {
      padding: 12px 18px;
      border: none;
      background: #2563eb;
      color: white;
      cursor: pointer;
      border-radius: 0 6px 6px 0;
    }

    .footer-bottom {
      border-top: 1px solid #374151;
      text-align: center;
      padding: 20px;
      margin-top: 40px;
      color: #9ca3af;
    }

    /* Mobile */
    /* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 20px;
  cursor: pointer;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 1px 10px;
  border-radius: 6px;
  transition: 0.3s;
}

.menu-toggle:hover {
  background: #d4af37;
  color: white;
}

    /* Desktop Navigation Fix */
    .nav-links {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 30px;
      list-style: none;
    }

    @media (max-width: 768px) {
      .navbar {
        flex-wrap: wrap;
      }

      .menu-toggle {
        display: block;
      }

      .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column !important;
        align-items: flex-start;
        gap: 0;
        background: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
      }

      .nav-links.active {
        max-height: 500px;
        margin-top: 15px;
      }

      .nav-links li {
        width: 100%;
        border-top: 1px solid #eee;
      }

      .nav-links a {
        display: block;
        padding: 15px 10px;
        width: 100%;
      }

      .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        display: none;
      }

      .dropdown.active .dropdown-menu {
        display: block;
      }

      .btn {
        display: none;
      }

      .hero h1 {
        font-size: 36px;
      }
    }

      .nav-links {
        flex-direction: column;
      }

      .hero h1 {
        font-size: 36px;
      }
    
  