
    /* Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
  font-family: font-name-1, font-name-2, generic-family;
      background: #0b0b0b;
      color: #fff;
      line-height: 1.6;
      padding-top: 80px;
    }

    /* Navigation Bar */
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 20px 60px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: transparent;
      transition: background 0.4s ease;
      z-index: 1000;
    }

    .navbar.scrolled {
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(6px);
    }

    .logo {
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    .logo span {
      color: #d0d0d0;
    }

    .nav-links {
      list-style: none;
      display: flex;
      gap: 30px;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      position: relative;
      transition: 0.3s;
    }

    .nav-links a:hover {
      color: #d9d9d9;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      bottom: -3px;
      left: 0;
      width: 0%;
      height: 2px;
      background: #fff;
      transition: width 0.3s;
      border-radius: 20px;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 1001;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #fff;
      transition: 0.3s;
      border-radius: 2px;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(7px, 7px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Header Section */
    .header {
      padding: 4rem 1rem;
      text-align: center;
      background: linear-gradient(180deg, #111, #0b0b0b);
    }

    .header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      color: #fff;
    }

    .header p {
      color: #bbb;
      font-size: 1rem;
    }

    /* Main Content */
    main {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1400px;
      margin: 0 auto;
    }

    .package {
      flex: 1 1 350px;
      max-width: 400px;
      padding: 1.5rem;
      border-radius: 20px;
      background: #121212;
      transition: transform 0.3s ease;
    }

    .package:hover {
      transform: translateY(-5px);
    }

    .package h2 {
      color: #fff;
      margin-bottom: 0.5rem;
      font-size: 1.8rem;
    }

    .package p {
      color: #ccc;
      margin-bottom: 1rem;
    }

    /* Horizontal Scrollable Gallery */
    .gallery {
      display: flex;
      gap: 15px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      padding: 1.5rem 0;
      margin-top: 1.5rem;
      -webkit-overflow-scrolling: touch;
    }

    /* Custom Scrollbar */
    .gallery::-webkit-scrollbar {
      height: 8px;
    }

    .gallery::-webkit-scrollbar-track {
      background: #1a1a1a;
      border-radius: 10px;
    }

    .gallery::-webkit-scrollbar-thumb {
      background: #fff;
      border-radius: 10px;
    }

    .gallery::-webkit-scrollbar-thumb:hover {
      background: #e6c255;
    }

    .gallery img {
      min-width: 280px;
      max-width: 280px;
      height: 380px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s;
      cursor: pointer;
      flex-shrink: 0;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Footer */
    footer {
      margin-top: 3rem;
      padding: 1rem 0;
      font-size: 0.9rem;
      background: #0d0d0d;
      text-align: center;
    }

    footer a {
      color: #d4af37;
      text-decoration: none;
    }

    footer a:hover {
      color: #e6c255;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .navbar {
        padding: 20px 30px;
      }

      .menu-toggle {
        display: flex;
      }

      .nav-links {
        position: absolute;
        top: 80px;
        right: 30px;
        background: rgba(0, 0, 0, 0.95);
        width: 220px;
        height: 0;
        overflow: hidden;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        transition: height 0.4s ease;
        padding: 0;
      }

      .nav-links.active {
        height: 180px;
        padding: 20px 0;
        border-radius: 20px;
        border: 1px solid rgb(255, 255, 255);
      }

      .header h1 {
        font-size: 2rem;
      }

      main {
        flex-direction: column;
        align-items: center;
      }

      .package {
        max-width: 90%;
      }

      .package h2 {
        font-size: 1.5rem;
      }

      .gallery img {
        min-width: 240px;
        max-width: 240px;
        height: 320px;
      }
    }

    @media (max-width: 480px) {
      .gallery img {
        min-width: 200px;
        max-width: 200px;
        height: 280px;
      }
    }