  html {
      scroll-behavior: smooth;
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
  }

  body {
      line-height: 1.6;
      background: #191818;
      color: #2a2525;
      margin: 0;
      padding: 0;

  }

  .navv {
      background-color: #823c3c;
  }

  section {

      padding: 60px 20px;
      text-align: center;
  }


  .menu,
  .why,
  .reviews {
      max-width: 1100px;
      margin: auto;
  }

  .menu-grid,
  .why-grid,
  .review-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 40px;
  }

  .card {
      background: #f8f8f8;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      overflow: hidden;
  }

  .card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 15px;
  }

  .offer {
      background: #e63946;
      color: white;
      padding: 40px 20px;
  }

  footer {
      background: #222;
      color: white;
      text-align: center;
      padding: 20px;
  }

  .contact p {
      margin: 10px 0;
  }

  .cont {
      text-decoration: none;
      color: black;
  }

  /* ============== */

  .booking-form {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 25px;
      border-radius: 10px;
      width: 300px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
      z-index: 1000;
  }

  .booking-form input {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ddd;
      border-radius: 5px;
  }

  /* Confirm Booking Button (Green) */
  .booking-form button {
      width: 100%;
      padding: 10px;
      margin-top: 8px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 15px;
  }

  .booking-form button:first-of-type {
      background: green;
      color: white;
  }

  /* Close Button (Red) */
  .close-btn {
      background: rgb(249, 2, 2);
      color: white;
      border: none;
      padding: 10px;
      width: 100%;
      border-radius: 6px;
      cursor: pointer;
      margin-top: 10px;
  }


  /* =============add cart */
  .order-popup {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: white;
      padding: 25px;
      width: 300px;
      border-radius: 10px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
      text-align: center;
      z-index: 1000;
  }

  .order-popup input {
      width: 100%;
      padding: 8px;
      margin: 10px 0;
  }

  .order-btn {
      background: green;
      color: white;
      border: none;
      padding: 10px;
      width: 100%;
      border-radius: 5px;
      cursor: pointer;
  }

  .close-btn {
      background: red;
      color: white;
      border: none;
      padding: 10px;
      width: 100%;
      margin-top: 10px;
      border-radius: 5px;
      cursor: pointer;
  }

  .cart-btn {
      border-radius: 50px;
      border: none;
      margin-top: 10px;
      background-color: rgba(17, 214, 17, 0.811);
      color: white;
  }

  .cart-btn:hover {
      color: rgb(255, 255, 255);
      background-color: rgb(3, 158, 3);
      border-radius: 0px;
  }

  /* map */
  .map {
      text-align: center;
      padding: 50px 20px;
      background: #f4f4f4;
  }

  .map h2 {
      margin-bottom: 20px;
  }

  .map-container {
      max-width: 900px;
      margin: auto;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }

  .map-container iframe {
      width: 100%;
      height: 400px;
      border: 0;
  }

  /* ========================sdfhabsjhasj */

  .menu-section {
      padding: 40px;
      background: #fafafa;
  }

  .menu-title {
      text-align: center;
      margin-bottom: 30px;
  }

  .menu-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 30px;
  }

  .menu-tabs button {
      padding: 10px 18px;
      border: none;
      background: #ff3c3c;
      color: white;
      border-radius: 30px;
      cursor: pointer;
      font-weight: 500;
  }

  .menu-tabs button:hover {
      background: #c40000;
      transform: scale(1.08);
  }

  /*bhuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu */
  .popup {

      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
      }

      to {
          opacity: 1;
      }
  }

  .popup-content {
      background: white;
      padding: 25px;
      width: 90%;
      max-width: 420px;
      border-radius: 14px;
      max-height: 80vh;
      overflow-y: auto;
      animation: popupZoom 0.35s ease;
  }

  @keyframes popupScale {

      0% {
          transform: scale(0.7);
          opacity: 0;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .menu-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      font-size: 16px;
  }

  .menu-item:hover {
      background: #fff6f6;
      padding-left: 10px;
  }

  .menu-item button {
      background: #ff4d4d;
      color: white;
      border: none;
      padding: 6px 12px;
      border-radius: 6px;
      cursor: pointer;
      transition: 0.3s;
  }

  .menu-item button:hover {
      background: #e60023;
      transform: scale(1.05);
  }

  .popbtn {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #333;
      transition: 0.3s;
  }

  /* payment popum vali css */
  .payment-popup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }

  .payment-box {
      background: #fff;
      padding: 30px;
      border-radius: 15px;
      text-align: center;
      animation: popupZoom 0.3s ease;
  }

  .qr-img {
      width: 220px;
      margin: 20px 0;
  }

  .confirm-btn {
      background: green;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
  }

  .confirm-btn:hover {
      background: darkgreen;
  }

  .card img {
      height: 300px;
  }

  .image-popup {

      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;

      background: rgba(0, 0, 0, 0.9);

      display: none;
      justify-content: center;
      align-items: center;

      z-index: 9999;

  }

  .image-popup img {
      max-width: 90%;
      max-height: 85%;
      border-radius: 10px;
      animation: zoomImage 0.4s ease;
  }

  @keyframes zoomImage {
      0% {
          transform: scale(0.7);
          opacity: 0;
      }

      100% {
          transform: scale(1);
          opacity: 1;
      }
  }

  .close-img {

      position: absolute;
      top: 25px;
      right: 40px;
      color: white;
      font-size: 35px;
      cursor: pointer;

  }

  .gallery-slider img {
      width: 100px;
  }

  section {
      padding: 30px 20px;
      text-align: center;
  }

  body.no-scroll {
      overflow: hidden;
  }

  .confirm-btn {
      padding: 10px 20px;
      margin-top: 10px;
      background: #25D366;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;

  }

  .confirm-btn:disabled {
      background: #aaa;
      cursor: not-allowed;
  }

  input {
      padding: 10px;
      width: 220px;
      border: 1px solid #ccc;
      border-radius: 5px;
  }

  /* =========== */
  .review-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: #4285F4;
      color: white;
      text-decoration: none;
      border-radius: 5px;
  }

  /* daily section */
  .daily-special {
      padding: 40px;
      text-align: center;
  }

  .dish-card {
      border: 1px solid #ddd;
      padding: 20px;
      margin: 15px auto;
      max-width: 250px;
      border-radius: 8px;
  }

  .dish-card button {
      background: #ff5722;
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
  }

  /* sliderrrrrrrrrrrrrrr */

  .menu2-slider {
      padding: 40px;
      text-align: center;
  }

  .slider2 {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      scroll-behavior: smooth;
      padding: 10px;
  }

  .slider2::-webkit-scrollbar {
      display: none;
  }

  .card2 {
      min-width: 200px;
      background: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      flex-shrink: 0;
  }

  .card2 img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
  }

  .card2 button {
      margin-top: 10px;
      padding: 8px 15px;
      background: #ff5722;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
  }

  /* ===== HEADER LAYOUT ===== */
  header {
      position: relative;
      display: flex;
      height: 90vh;
      padding: 0 10%;
      overflow: hidden;
      background: linear-gradient(270deg, #000000, #1a1a1a, #000000);
      background-size: 600% 600%;
      animation: gradientMove 10s ease infinite;
  }

  @keyframes gradientMove {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  header::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 2px, transparent 2px);
      background-size: 60px 60px;
      animation: moveParticles 20s linear infinite;
      z-index: 0;
  }

  @keyframes moveParticles {
      from {
          transform: translateY(0);
      }

      to {
          transform: translateY(-100px);
      }
  }


  /* wrapper */
  .hero-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      gap: 40px;

  }

  /* ===== GLASS EFFECT SAME ===== */
  .glass {
      background: rgba(255, 255, 255, 0.05);
      padding: 30px;
      border-radius: 20px;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #fff;
  }

  /* ===== HERO RIGHT SIDE ===== */
  .hero-content {
      max-width: 400px;
      text-align: left;
  }

  .hero-content h1 {
      color: #d4af37;
      font-size: 40px;
  }

  /* ===== REVIEW LEFT SIDE ===== */
  .review-box {
      max-width: 300px;
  }

  .review-btnn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: linear-gradient(45deg, #d4af37, #f5e6a5);
      color: rgb(78, 67, 67);
      text-decoration: none;
      border-radius: 5px;
  }

  .review-box h3 {
      color: #d4af37;
      margin-bottom: 10px;
  }

  .review-box p {
      font-size: 14px;
      color: #ccc;
      margin-bottom: 5px;
  }

  /* ===== BUTTON ===== */
  .btnn,
  .book-btn {
      margin-top: 10px;
      padding: 10px 20px;
      border: none;
      color: rgb(78, 67, 67);
      border-radius: 25px;
      background: linear-gradient(45deg, #d4af37, #f5e6a5);
      cursor: pointer;
  }

  /* ===== MOBILE RESPONSIVE ===== */
  @media(max-width:768px) {
      .hero-wrapper {
          flex-direction: column;
          text-align: center;
      }

      .review-box {
          order: 1;
          /* top */
          width: 100%;
      }

      .hero-content {
          order: 2;
          /* bottom */
          width: 100%;
      }
  }

  /* ===== ABOUT SECTION ===== */
  .about {
      /* width: 100%; */
      padding: 70px 10%;
      text-align: center;
      background: #181717;
  }

  .about h2 {
      color: #d4af37;
      margin-bottom: 15px;
      font-size: 32px;
  }

  .about p {
      color: #a5a2a2;
      font-size: 16px;
      max-width: 600px;
      margin: auto;
      line-height: 1.6;
  }

  /* ===== DAILY SPECIAL ===== */
  .daily-special {
      padding: 70px 10%;
      text-align: center;
      background: #252525;
  }

  .daily-special h2 {
      color: #cda72b;
      margin-bottom: 20px;
  }

  /* daily card (JS se aayega) */
  #daily {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  /* sample card style */
  #daily .card {
      background: #1a1a1a;
      padding: 15px;
      border-radius: 15px;
      width: 250px;
      transition: 0.3s;
  }

  #daily .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  }

  #daily img {
      width: 100%;
      border-radius: 10px;
  }

  .bg-video {
      position: absolute;
      width: 30%;
      height: 100%;
      object-fit: cover;
      transform: rotate(-90deg);
  }

  .harshit {
      color: rgb(163, 161, 161);
  }

  /* center image */

  /* wrapper */
  .hero-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
  }

  /* CENTER IMAGE */
  .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .hero-image img {
      width: 280px;
      filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
      animation: float 4s ease-in-out infinite;
  }

  /* floating animation */
  @keyframes float {
      0% {
          transform: translateY(0px);
      }

      50% {
          transform: translateY(-15px);
      }

      100% {
          transform: translateY(0px);
      }
  }

  @media(max-width:768px) {
      .hero-wrapper {
          flex-direction: column;
      }

      .review-box {
          order: 1;
      }

      .hero-image {
          order: 2;
      }

      .hero-content {
          order: 3;
      }

      .hero-image img {
          width: 200px;
      }
  }