    .navbar{
        /* border-top: 4px solid #ed1b24; */
        position: fixed;
        top: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0px 37px 87px -36px rgba(0,0,0,0.44);
        -webkit-box-shadow: 0px 37px 87px -36px rgba(0,0,0,0.44);
        -moz-box-shadow: 0px 37px 87px -36px rgba(0,0,0,0.44);
        z-index: 99;
    }
    .navbar-nav{
      gap: 15px;
    }
    .navbar-nav .nav-link{
      font-size: 20px;
      font-weight: 700;
      color: #000 !important;
    }
    .navbar-nav .nav-link.active{
      color: #ed1b24 !important;
    }
    .navbar-nav .nav-link:hover{
      color: #ed1b24 !important;
    }

    a.cus-primary-btn {
      color: #fff;
      border: 2px solid #ed1b24;
      padding: 10px 20px;
      font-size: 18px;
      text-decoration: none;
      border-radius: 5px;
      background: linear-gradient(
        90deg,
        #ed1b24 50%,
        #fff 50%
      );
      background-size: 200% 100%;
      background-position: left;
      transition: 
        background-position 0.5s ease,
        color 0.5s ease;
      overflow: hidden;
      display: inline-block;
    }

    a.cus-primary-btn:hover {
      background-position: right;
      color: #ed1b24;
    }

    
    .banner{
        /* background: linear-gradient(135deg, #ff1c1c, #ff7c00,#ff1c1c); */
        background-color: #ed1b24;
        margin-top: 110px;
    }
    #banner-wrap {
      position: relative;
      height: calc(100vh - 110px);
      width: 100%;
    }

    .image-layer, .text-layer {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      transition: transform 0.3s ease;
      will-change: transform;
      width: 60%;
    }

    .image-layer img {
      width: 100%;
      /* max-width: 1200px; */
    }

    .text-layer h2{
      color: white;
      /* color: #ff7c00; */
      font-size: 120px;
      font-weight: bold;
      text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
      /* pointer-events: none; */
      text-align: center;
    }
    
    .text-layer h2 span{
        color: #0000007c;
        -webkit-text-stroke: 2px #fff;
    }

    .about{
        overflow: hidden;
        background-color: #000;
        padding: 80px 0;
        border-bottom: 5px solid #fff;
    }
    
    .about-wrap{
      max-width: 1440px;
      margin: 40px auto 0;
    }

    @media (max-width: 767px){
      .text-layer h2{
        font-size: 80px;
      }
      .image-layer{
        width: 100%;
      }
      .about-wrap{
        flex-direction: column;
        gap: 20px;
      }
      .about .box{
        width: 100% !important;
      }
    }

    .about .box{
        width: 50%;
    }

    .about .box h2{
      font-size: 50px;
      color: #fff;
      font-weight: 700;
    }

    .about .box:first-child{
      padding-left: 30px;
    }
    .about .box figure{
      max-width: 500px;
      margin: 0 auto;
    }
    
    .about .box img{
      /* box-shadow: 10px 10px 5px 0px rgba(255,255,255,0.75);
      -webkit-box-shadow: 10px 10px 5px 0px rgba(255,255,255,0.75);
      -moz-box-shadow: 10px 10px 5px 0px rgba(255,255,255,0.75); */
        transition: transform 2s ease-in-out;
    }
    .about .box img:hover{
        transform: rotate(30deg) scale(0.8);
    }

    .about p{
        color: #fff;
        font-size: 25px;
        font-weight: 500;
        line-height: 1.2;
        margin-top: 30px;
    }

    /* .about p span{
        color: #000000a1;
    } */


    .menu{
      padding: 100px 0;
      background-color: #ed1b24;
    }

    .menu h2{
      color: #ed1b24;
      display: inline-block;
      text-align: center;
      font-size: 40px;
      font-weight: 700;
      padding: 30px 120px;
      /* background: linear-gradient(135deg, #f7b733, #fc4a1a); */
      background-color: #fff;
      clip-path: polygon(
        0% 30%, 10% 20%, 30% 25%, 50% 10%,
        70% 30%, 90% 20%, 100% 40%,
        90% 80%, 70% 90%, 50% 75%,
        30% 90%, 10% 80%, 0% 60%
      );
      margin: 0 auto;
    }

    .menu-section {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    @media (max-width: 767px){
      .menu-section {
        grid-template-columns: repeat(2, 1fr);
      } 
      .menu .container{
        max-width: 100%;
      }
    }

    .menu-section .cus-card {
      border: 3px solid white;
      background-color: transparent;
      padding: 16px;
      /* width: 220px; */
      position: relative;
      transition: border 0.3s ease;
    }

    .menu-section .cus-card:hover {
      border-color: transparent;
    }

    .menu-section .cus-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
      border-radius: 8px;
      position: relative;
      transition: 0.3s ease;
    }

    .menu-section .cus-card:hover img{
      transform: rotate(-10deg) scale(1.1);
    }

    .menu-section .menu-name {
      margin-top: 10px;
      font-size: 22px;
      margin-bottom: 10px;
      text-align: center;
      font-weight: 500;
    }

    .menu-section .price {
      margin-top: 4px;
      font-size: 18px;
      color: #fff;
      text-align: center;
      display: block;
      font-weight: 500;
    }

    .menu-section .order-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -30%) scale(0.9);
      opacity: 0;
      background: #000;
      color: white;
      border: none;
      padding: 10px 20px;
      /* border-radius: 25px; */
      cursor: pointer;
      text-decoration: none;
      transition: opacity 0.4s ease, transform 0.4s ease;
      background-size: 200% auto;


      transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
      background-image: linear-gradient(to right, white 0%, white 100%);
      background-size: 0% 100%;
      background-repeat: no-repeat;
      background-position: left;
      z-index: 1;
      overflow: hidden;
    }

    .menu-section .cus-card:hover .order-btn {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
      animation: liftUp 0.4s ease forwards;
    }

    .order-btn:hover {
      background-size: 100% 100%;
      color: black; /* Text color flips as background fills */
      transition: background-size 0.8s ease, color 0.8s ease;
    }

    @keyframes liftUp {
      from {
        transform: translate(-50%, -40%) scale(0.9);
        opacity: 0;
      }
      to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
    }

    /* Optional: to make images part of container */
    .menu-section .card-image-container {
      position: relative;
      overflow: hidden;
    }

    .menu-section .card-image-container:hover .order-btn {
      pointer-events: all;
    }

    
    .gallery{
      background-color: #fff;
      overflow: hidden;
      padding: 80px 0 120px;
      border-top: 5px solid #000;
      border-bottom: 5px solid #000;
      /* background-color: #000; */
    }

    .gallery .gallery-wrap{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      margin-top: 80px;
      /* gap: 20px; */
    }

    @media (max-width: 767px){
      .gallery .gallery-wrap{
        grid-template-columns: repeat(2, 1fr);
      } 
    }

    .gallery .gallery-wrap img{
      width: 100%;
    }

    .gallery .gallery-wrap .gallery-card{
      transform: rotate(-8deg);
      padding: 20px;
      background-color: #fff;
      border: 5px solid  #000;
      overflow: hidden;
      /* transition: 0.3s ease-in-out; */
    }

    .gallery .gallery-wrap .gallery-card img{
      transition: 0.3s ease-in-out;
      border: 4px solid #000;
    }

    .gallery .gallery-wrap .gallery-card:hover img{
      transform: rotate(8deg);
    }
    
    .section-heading h2{
      color: #fff;
      display: inline-block;
      text-align: center;
      font-size: 40px;
      font-weight: 700;
      padding: 40px 120px;
      /* background: linear-gradient(135deg, #f7b733, #fc4a1a); */
      background-color: #000;
      clip-path: polygon(
        0% 25%, 10% 0%, 30% 0%, 50% 25%, 70% 0%, 90% 0%, 100% 25%, 100% 0%, 
        100% 75%, 90% 100%, 70% 100%, 50% 75%, 30% 100%, 10% 100%, 0% 75%
      );
      margin: 0 auto;
    }


    #progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 4px; /* You can adjust thickness */
      background-color: #ed1b24;
      width: 0%; /* Start empty */
      z-index: 9999;
    }

    .footer{
      color: #fff;
      background-color: #000;
    }

    .food-rating{
      max-width: 600px;
      margin: 0 auto;
    }

    .food-rating img{
      width: 100%;
    }




    .rating{
      border-top: 5px solid #fff;
      background-color: #000;
      padding: 50px;
    }


    .rating .rating-card {
      background: #aefc0a;
      border: 5px solid #222;
      border-radius: 20px;
      padding: 30px 40px;
      max-width: 600px;
      position: relative;
      color: #222;
      margin: 0 auto;
    }

    .rating .rating-card h2 {
      text-align: center;
      font-size: 2.2rem;
      font-weight: bold;
      margin: 0 0 20px;
      position: relative;
      transition: all 0.5s ease;
    }

    .rating .rating-card h2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -10px;
      width: 100%;
      height: 4px;
      background: #222;
    }

    .rating .ratings {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 30px;
      padding: 0 10px;
      position: relative;
    }

    .rating .circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: #d4eeb5;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      font-weight: bold;
      color: #222;
      border: 4px solid #222;
      position: relative;
      transition: all 0.3s ease;
    }

    .rating .circle.active {
      background: #222;
      color: white;
      transform: scale(1.2);
    }

    .rating .pointer {
      position: absolute;
      top: -20px;
      width: 0;
      height: 0;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      border-top: 20px solid #222;
      left: 0;
      transform: translateX(-50%);
      transition: left 0.3s ease;
    }

    .rating .label {
      text-align: center;
      font-size: 1.2rem;
      margin-top: 20px;
      font-weight: bold;
    }

    .rating .celebration {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      font-size: 2.5rem;
      font-weight: bold;
      color: #fff;
      text-shadow: 2px 2px 10px #000;
      pointer-events: none;
      opacity: 0;
      transition: transform 0.6s ease, opacity 0.6s ease;
    }

    .rating .celebration.show {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 1;
    }




    .flavour{
      margin-top: 100px;
      background-color: #000;
    }

    .flavour-heading h2{
      font-size: 60px;
      color: #fff;
      font-weight: 700;
    }

    .flavour .flavour-wrap{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .flavour .flavour-wrap .box{
      background: #cc0a0a;
      color: #fff;
      background: radial-gradient(circle, rgba(168, 147, 147, 0) 0%, rgba(255, 255, 255, 0) 0%, rgba(247, 0, 0, 0.247) 100%);
      padding: 30px;
      text-align: center;
      display: flex;
      flex-direction: column;
      /* gap: 30px; */
      min-height: 350px;
      justify-content: space-between;
      border-radius: 5px;
    }

    .flavour .flavour-wrap .box figure img{
      width: 70px;
    }

    .flavour .flavour-wrap .box h4{
      font-size: 25px;
      font-weight: 700;
    }

    .flavour .flavour-wrap .box p{
      font-size: 16px;
      font-weight: 500;
    }

    .flavour .flavour-wrap .box .hot-img{
      width: 100px;
      margin-bottom: 10px;
    }

    .flavour .flavour-wrap .box .cus-secondary-btn{
      background-color: #ed1b24;
      width: 100%;
      color: #fff;
      font-weight: 700;
      font-size: 20px;
      text-decoration: none;
      padding: 10px 0;
      border-radius: 5px;
      cursor: pointer;
    }


    @media (max-width: 991px){
      .flavour .flavour-wrap{
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 767px){
      .flavour .container{
        max-width: 100%;
      }
      .flavour .flavour-wrap{
        gap: 20px;
      }
      .rating .circle{
        width: 40px;
        height: 40px;
        font-size: 20px;
      }
      .rating .rating-card h2{
        font-size: 30px;
      }
    }

    @media (max-width: 575px){
      .banner{
        overflow: hidden;
      }
      .text-layer h2{
        font-size: 40px;
      }
      #banner-wrap{
        height: calc(100vh - 220px);
      }
      .text-layer h2 span{
        -webkit-text-stroke: 1px #fff;
      }
      .about{
        padding: 0 0 30px;
      }
      .about .box h2{
        font-size: 30px;
      }
      .about p{
        font-size: 16px;
      }
      .about .box{
        padding: 0 15px !important;
      }
      .menu h2{
        font-size: 30px;
        padding: 30px 80px;
      }
      .menu-section{
        grid-template-columns: 1fr;
      }
      .about p{
        font-size: 20px;
      }
      .section-heading h2{
        font-size: 30px;
        
      }
      .rating{
        padding: 30px 15px;
      }
      .rating-card{
        padding: 30px 15px;
      }
      .rating-card h2{
        font-size: 20px;
      }
      .rating .pointer{
        border-top: 10px solid #222;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
      }
      .flavour-heading h2{
        font-size: 40px;
      }
      .gallery .gallery-wrap{
        grid-template-columns: 1fr;
      }
      .flavour .flavour-wrap{
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 420px){
      .section-heading h2{
        font-size: 22px;
        padding: 30px 60px;
      }
      .rating{
        padding: 20px 10px;
      }
      .rating .rating-card{
        padding: 20px 10px;
      }
    }