
    :root {
      --primary: #2c3e50;
      --accent: #e67e22;
      --light: #fefefe;
      --dark: #1a1a1a;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background-color: var(--light);
      color: var(--dark);
    }

 
    /* Sections */
   

    .menu-container {
      max-width: 1200px;
      margin: auto;
    }

    .menu-heading {
      text-align: center;
      font-size: 2.8rem;
      margin-bottom: 40px;
      color: #2c3e50;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }

    .card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      display: flex;
      flex-direction: column;
      animation: fadeInUp 1s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-body {
      padding: 20px;
      flex-grow: 1;
    }

    .card-body h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #2c3e50;
    }

    .card-body p {
      font-size: 0.95rem;
      color: #666;
    }

    .card-footer {
      background: #f0f0f0;
      padding: 15px 20px;
      font-size: 0.9rem;
      color: #444;
      border-top: 1px solid #e0e0e0;
    }

    @keyframes fadeInUp {
      from {
        transform: translateY(30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .grid {
        grid-template-columns: 1fr;
      }

      .menu-heading {
        font-size: 2rem;
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 600px) {
      .item {
        flex-direction: column;
        align-items: flex-start;
      }

      .price {
        margin-top: 5px;
      }
    }

    /* Footer */
  

.section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 30px;
      color: #2c3e50;
    }

    .slider-container {
      max-width: 1200px;
      margin: auto;
      overflow: hidden;
      position: relative;
    }

    .slider-track {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .slide {
      min-width: 100%;
      padding: 20px;
      display: flex;
      justify-content: center;
    }

    .flavour-card {
      background: #fff;
      border-radius: 16px;
      width: 90%;
      max-width: 900px;
      overflow: hidden;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      transition: transform 0.4s;
    }

    .flavour-card:hover {
      transform: scale(1.02);
    }

    .flavour-image {
      width: 100%;
      height: 240px;
      object-fit: cover;
    }

    .flavour-description {
      padding: 20px;
      font-size: 1rem;
      background: #fafafa;
      flex-grow: 1;
    }

    .flavour-description h2 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #2c3e50;
    }

    .flavour-footer {
      background: #eaeaea;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.95rem;
    }

    .flags {
      display: flex;
      gap: 10px;
    }

    .flags img {
      width: 30px;
      height: 20px;
      border-radius: 4px;
    }

    .slider-buttons {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      pointer-events: none;
    }

    .slider-buttons button {
      background: #2c3e50;
      color: #fff;
      border: none;
      padding: 10px 16px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      pointer-events: auto;
      transition: background 0.3s;
    }

    .slider-buttons button:hover {
      background: #34495e;
    }

    @media (max-width: 768px) {
      .flavour-card {
        width: 100%;
      }

      .flavour-description h2 {
        font-size: 1.2rem;
      }

      .slider-buttons button {
        font-size: 1rem;
        padding: 8px 12px;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      0% { opacity: 0; transform: scale(0.95); }
      100% { opacity: 1; transform: scale(1); }
    }

    @keyframes slideUp {
      0% { opacity: 0; transform: translateY(50px); }
      100% { opacity: 1; transform: translateY(0); }
    }

    /* Responsive */
   
 .about-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      min-height: 100vh;
      gap: 30px;
    }

    .about-content, .about-image {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease-out;
    }

    .about-content.visible, .about-image.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .about-content {
      flex: 1 1 400px;
      max-width: 600px;
    }

    .about-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #5a3212;
    }

    .about-content p {
      font-size: 1.15rem;
      line-height: 1.8;
      color: #4d3b2b;
      margin-bottom: 20px;
    }

    .about-image {
      flex: 1 1 300px;
      max-width: 500px;
      text-align: center;
    }

    .about-image img {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
      .about-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        min-height: 100vh;
        text-align: center;
      }

      .about-content h2 {
        font-size: 2rem;
      }

      .about-content p {
        font-size: 1rem;
      }

      .about-image img {
        max-height: 280px;
      }
    }

    @media (max-width: 480px) {
      .about-content h2 {
        font-size: 1.6rem;
      }

      .about-content p {
        font-size: 0.95rem;
      }
    }

    .cta-section {
      width: 100%;
      min-height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('https://restaurantindia.s3.ap-south-1.amazonaws.com/s3fs-public/content13125.jpg') center/cover no-repeat;
      padding: 40px 20px;
      text-align: center;
    }

    .cta-content {
      max-width: 700px;
      color: #fff;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 1s ease-out forwards;
    }

    .cta-content h1 {
      font-size: 2.4rem;
      margin-bottom: 15px;
      line-height: 1.3;
    }

    .cta-content p {
      font-size: 1.1rem;
      margin-bottom: 25px;
      color: #e0d7cc;
    }

    .cta-button {
      background-color: #e4b34c;
      color: #2c1e13;
      font-weight: bold;
      padding: 12px 28px;
      border: none;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
      text-decoration: none;
    }

    .cta-button:hover {
      background-color: #c99a3d;
    }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .cta-content h1 {
        font-size: 1.8rem;
      }

      .cta-content p {
        font-size: 1rem;
      }

      .cta-button {
        padding: 10px 22px;
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .cta-content h1 {
        font-size: 1.5rem;
      }

      .cta-content p {
        font-size: 0.95rem;
      }
    }
     .spotlight-section {
      padding: 60px 20px;
      background: linear-gradient(to bottom, #fdf7ed, #fffaf4);
      text-align: center;
    }

    .spotlight-section h2 {
      font-size: 2.8rem;
      color: #b48a3e;
      margin-bottom: 10px;
    }

    .spotlight-section p {
      font-size: 1.1rem;
      color: #5a3d1e;
      margin-bottom: 40px;
    }

    .spotlight-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .spotlight-card {
      background: #fff;
      border: 2px solid #e4b34c;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
    }

    .spotlight-card:hover {
      transform: scale(1.03);
      box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
    }

    .spotlight-badge {
      position: absolute;
      top: 0;
      left: 0;
      background: #e4b34c;
      color: #fff;
      font-size: 0.75rem;
      font-weight: bold;
      padding: 5px 12px;
      border-radius: 0 0 8px 0;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 2;
    }

    .dish-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
      display: block;
    }

    .dish-info {
      padding: 16px;
    }

    .dish-name {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 6px;
      color: #3d2a15;
    }

    .dish-price {
      color: #b48a3e;
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .spotlight-section h2 {
        font-size: 2rem;
      }

      .spotlight-section p {
        font-size: 1rem;
      }
    }
    .about-us {
      padding: 80px 20px;
      background-color: #fefefe;
    }

    .about-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }

    .text-side {
      flex: 1 1 500px;
    }

    .text-side h2 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 20px;
      color: #222;
    }

    .text-side p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 20px;
      color: #555;
    }

    .contact-box {
      background: #f0f0f0;
      padding: 20px;
      border-left: 4px solid #6c63ff;
      border-radius: 8px;
      font-size: 0.95rem;
    }

    .contact-box p {
      margin: 8px 0;
    }

    .image-side {
      flex: 1 1 450px;
      text-align: center;
    }

    .image-side img {
      width: 100%;
      max-width: 500px;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .image-side img:hover {
      transform: scale(1.03);
    }

    @media (max-width: 768px) {
      .about-container {
        flex-direction: column-reverse;
        text-align: center;
      }

      .text-side h2 {
        font-size: 2rem;
      }

      .contact-box {
        border-left: none;
        border-top: 4px solid #6c63ff;
      }
    }