    body {
      background-color: #000;
      color: #fff;
      font-family: 'Poppins', sans-serif;
    }

    .navbar {
      background-color: transparent !important;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 10;
    }

    .navbar-brand img {
      height: 50px;
    }

    .nav-link,
    .btn-order {
      color: #fff !important;
      margin: 0 10px;
    }

    .btn-order {
      background-color: gold;
      border: none;
      padding: 6px 12px;
      border-radius: 20px;
      font-weight: bold;
    }

    .hero-image {
      background: url('assets/img/menuimg.jpg') center center/cover no-repeat;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-text {
      text-align: center;
    }

    .cart-icon {
      position: relative;
      font-size: 1.2rem;
      margin-left: 15px;
      color: white;
    }

    .cart-counter {
      position: absolute;
      top: -5px;
      right: -10px;
      background: gold;
      color: black;
      font-size: 12px;
      padding: 2px 6px;
      border-radius: 50%;
    }


    .category-buttons .btn {
      margin: 5px;
      border-radius: 20px;
    }

    .card {
      min-width: 250px;
      margin-right: 20px;
      background-color: #111;
      color: white;
      border: none;
    }


    .card-img-top {
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }

    .btn-add {
      background-color: gold;
      color: black;
      border: none;
      border-radius: 20px;
      font-weight: bold;
      padding: 5px 15px;
    }

    footer {
      background-color: #111;
      padding: 40px 0;
      text-align: center;
    }

    .footer-icon {
      color: gold;
      margin: 0 10px;
    }


  .cart-viewer {
    max-height: 400px;
    overflow-y: auto;
  }
  .cart-counter {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
  }
  .remove-item-btn {
    background-color: #f44336;
    border: none;
    color: white;
    font-size: 12px;
    cursor: pointer;
  }


/* vdfsfsdfs */

.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-content .btn-cta {
  background-color: gold;
  color: black;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
}

.hero-content .btn-cta:hover {
  background-color: #ffd700;
}


    section {
      padding: 60px 0;
    }

    .chatbot-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: gold;
      border: none;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }

    .chatbox {
      display: none;
      position: fixed;
      bottom: 90px;
      right: 20px;
      width: 300px;
      background: #fff;
      color: #111;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 1000;
    }

    .chatbox-header {
      background: gold;
      padding: 10px;
      font-weight: bold;
    }

    .chatbox-body {
      padding: 10px;
      height: 200px;
      overflow-y: auto;
    }

    .scrolling-wrapper {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
    }

    .scrolling-wrapper::-webkit-scrollbar {
      display: none;
    }


    /* Styling for the View More Button */
.btn-cta {
  background-color: gold;
  color: black;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
}

.btn-cta:hover {
  background-color: #ffd700;
}


    @media (max-width: 768px) {
      .navbar-collapse {
        text-align: center;
      }
    }


