 * { margin: 0; padding: 0; box-sizing: border-box; }
        
       body { 
   background-color: var(--primary-red);
    color: white;
      font-family: 'Inter', sans-serif;
    min-height: 100vh;
    overflow-x: hidden; /* Changed from 'hidden' to 'overflow-x: hidden' */
    overflow-y: auto;   /* Ensures vertical scroll is allowed */
}
        /* Dynamic Blurred Background */
        .bg-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover; background-position: center;
            filter: brightness(0.4) saturate(1.2);
            z-index: -2;
            transition: background-image 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .bg-vignette {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.8) 100%);
            z-index: -1;
        }

 /* ================================
   NAVBAR
================================ */
 .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 80px;
    position: fixed;
    width: 100%;
    z-index: 100;

    /* Dark blue with transparency */
    background: rgba(29, 67, 95, 0.7); /* 70% opacity for more see-through */

    /* Smooth glassy effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px); /* for Safari */

    transition: background 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(29, 67, 95, 0.7);
    padding: 20px 80px;
}

.logo {
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 18px;
    color: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

/* ================================
   DROPDOWN FIX (NO DISAPPEAR)
================================ */
.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 25px; /* hover bridge */
}

/* ================================
   DROPDOWN MENU (DARK BLUE)
================================ */
.dropdown-menu {
    position: absolute;
    top: 200%;
    left: 0;
    min-width: 260px;
    background: #1D435F; /* dark blue background */
    border: 1px solid #fff; /* white border */
    border-radius: 6px; /* rounded corners */
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    z-index: 999;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ================================
   DROPDOWN ITEMS
================================ */
.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff; /* white text */
    transition: background 0.25s ease, color 0.25s ease;
    border-radius: 4px; /* rounded hover effect */
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.15); /* subtle white highlight */
    color: #fff;
}

/* ================================
   DROPDOWN ICON
================================ */
.dropdown-icon {
    display: inline-block;
    margin-left: 6px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #fff; /* white icon */
    border-bottom: 1.5px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    top: -2px;
}

/* Rotate icon on hover */
.dropdown:hover .dropdown-icon {
    transform: rotate(-135deg);
}

/* ================================
   ROOT COLORS
================================ */
:root {
    --primary-red: #256ea4;
    --dark-red: #1D435F; /* used for dropdown background */
    --white: #ffffff;
}

 

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    padding: 0 5%;
}

/* Background Wave Effect */
.bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, #256ea4 100%, #256ea4 100%);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%, 15% 50%);
    z-index: -1;
}

.container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

/* Left Content Styles */
.content-left { max-width: 500px; }

.main-title {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sub-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}

.description {
   
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-row { display: flex; align-items: center; gap: 20px; }

.order-btn {
    background: white;
    color: var(--primary-red);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-btn span {
    background: var(--dark-red);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Proof */
.social-proof {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
}

.avatar-group img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -10px;
}

/* Right Content Styles */
.content-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.product-wrapper {
    position: relative;
    text-align: center;
}

.main-bag {
    width: 400px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    z-index: 2;
    position: relative;
}

 

/* Side Buttons */
.side-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.menu-item {
    background: none;
    border: 2px solid white;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.menu-item:hover {
    background: white;
    color: var(--primary-red);
}
menu-item.active {
    background: #000;
    color: #fff;
}

 

/* Slider Dots */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: -30px;
}

.dots { display: flex; gap: 5px; }
.dots span { width: 8px; height: 8px; background: rgba(255,255,255,0.5); border-radius: 50%; }
.dots span.active { background: white; width: 10px; height: 10px; }



  /* ==============================
   SECTION
================================ */
.restaurant-setup {
  padding: 80px 20px;
  background: #f9fafb;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ==============================
   CONTAINER (DESKTOP GRID)
================================ */
.restaurant-setup .container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ==============================
   INTRO
================================ */
.restaurant-setup .intro-row {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.restaurant-setup .intro-row h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1f2933;
  line-height: 1.3;
  margin-bottom: 12px;
}

.restaurant-setup .intro-row p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.6;
}

/* ==============================
   CARD
================================ */
.restaurant-setup .setup-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.restaurant-setup .setup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* ==============================
   IMAGE
================================ */
.restaurant-setup .card-image {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.restaurant-setup .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==============================
   CONTENT
================================ */
.restaurant-setup .setup-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 10px;
}

.restaurant-setup .setup-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin-top: auto;
}

 @media (max-width: 768px) {
.restaurant-setup {
    padding: 50px 0 !important;
    overflow: hidden; 
  }

  .restaurant-setup .intro-row {
    padding: 0 20px;
    margin-bottom: 30px;
  }

  .restaurant-setup .intro-row h2 {
    font-size: 26px;
  }

  /* Horizontal swipe container */
.restaurant-setup .container {
    display: flex !important; /* Force flex to override the grid */
    flex-direction: row !important; /* Ensure it stays horizontal */
    grid-template-columns: none !important; 
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 20px 30px !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  /* Hide scrollbar for Chrome/Safari */
  .restaurant-setup .container::-webkit-scrollbar {
    display: none;
  }

  /* 1.5 Card Layout Logic */
.restaurant-setup .setup-card {
    flex: 0 0 75% !important; /* This creates the 1.5 card view */
    max-width: 75% !important;
    scroll-snap-align: start;
    min-height: 380px;
    display: flex;
    flex-direction: column;
  }
  /* Fix for the Intro Row in Flex context */
 .restaurant-setup .intro-row {
    flex: 0 0 100%; 
    margin-bottom: 20px;
    padding: 0 20px;
    display: block;
    text-align: center;
  }
}


  /* ===== KITCHEN EQUIPMENT GRID ===== */
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .equipment-card img {
    height: 130px;
  }

  .equipment-card h3 {
    font-size: 15px;
  }

  .equipment-card p {
    font-size: 13px;
  }


     /* ==========================
   Kitchen Equipment Section
   ========================== */
.kitchen-equipment-section {
  padding: 10px 20px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
}

/* --------------------------
   Section Header (Full Width)
   -------------------------- */
.kitchen-equipment-section .section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
    border-radius: 20px;
  background: #e9ecef; /* optional: full-width background */
  padding: 40px 20px;
  box-sizing: border-box;
}

.kitchen-equipment-section .section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.kitchen-equipment-section .section-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
}

/* --------------------------
   Container for Equipment Grid
   -------------------------- */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* --------------------------
   Equipment Grid
   -------------------------- */
.equipment-grid {
   display: grid;
  grid-template-columns: repeat(4, 1fr); /* always 4 cards per row */
  gap: 25px;
}

/* --------------------------
   Equipment Cards
   -------------------------- */
.equipment-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.equipment-card:hover {
  transform: translateY(-5px);
}

.equipment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.equipment-card h3 {
  font-size: 18px;
  margin: 15px 0 8px;
  color: #111;
}

.equipment-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

  @media (max-width: 768px) {
  /* 1. Adjust Section Padding */
  .kitchen-equipment-section {
    padding: 30px 0 !important; /* Remove horizontal padding so slider can touch edges */
    overflow: hidden;
  }

  .kitchen-equipment-section .section-header {
    margin-bottom: 30px;
    padding: 30px 20px;
    border-radius: 0; /* Looks cleaner on mobile to have full width header */
  }

  /* 2. Target the specific container for this section */
  .kitchen-equipment-section .container {
    padding: 0 !important;
    max-width: 100% !important;
  }

  /* 3. Convert Grid to Horizontal Flex Slider */
  .kitchen-equipment-section .equipment-grid {
    display: flex !important; /* Override the Grid */
    grid-template-columns: none !important; 
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding: 0 20px 30px !important; /* Padding for the shadow visibility */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
  }

  /* Hide scrollbar Chrome/Safari */
  .kitchen-equipment-section .equipment-grid::-webkit-scrollbar {
    display: none;
  }

  /* 4. One and Half Card Logic (75% width) */
  .kitchen-equipment-section .equipment-card {
    flex: 0 0 75% !important; /* 75% ensures the next card peeks in */
    max-width: 75% !important;
    scroll-snap-align: start;
    text-align: left; /* Optional: left align usually looks better in sliders */
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  }

  /* 5. Image & Text Adjustments */
  .kitchen-equipment-section .equipment-card img {
    height: 160px; /* Slightly taller for the 75% width */
  }

  .kitchen-equipment-section .equipment-card h3 {
    font-size: 17px;
    margin: 12px 0 5px;
  }

  .kitchen-equipment-section .equipment-card p {
    font-size: 13px;
    line-height: 1.4;
  }
}
  .consultation-section {
    background: #1D435F;
    padding: 80px 20px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.consultation-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* Left Text */
.consultation-info {
    flex: 1;
}

.consultation-info h2 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.consultation-info span {
    color: #25d366;
}

.consultation-info p {
    font-size: 18px;
    line-height: 1.6;
    color: #d1d5db;
    text-align: center;
}

/* Form Box */
.consultation-form {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    border-color: #25d366;
}

.consultation-form textarea {
    height: 120px;
    resize: none;
}

/* Submit Button */
.consultation-form button {
    width: 100%;
    padding: 14px;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    transition: 0.3s;
}

.consultation-form button:hover {
    background: #25d366;
}

/* WhatsApp Button */
.whatsapp-btn {
    margin-top: 15px;
    display: flex;
    justify-content: center;
 
}

 

.whatsapp-btn:hover {
    background-color: #1ebe57;
}

/* Responsive */
@media(max-width: 800px){
    .consultation-container{
        flex-direction: column;
    }

    .consultation-info h2{
        font-size: 32px;
    }
}

    

.whatsapp-btn {
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* RESPONSIVE */
 


.whatsapp-button {
  position: fixed;
  bottom: 30px;           /* distance from bottom */
  right: 30px;            /* distance from right */
  width: 60px;            /* button size */
  height: 60px;
   background-color: white;
  border-radius: 50%;     /* makes it round */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

.whatsapp-button img {
  width: 75px;            /* icon size */
  height: 75px;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(0,0,0,0.4);
}

/* =====================================
   PERFECT MOBILE VIEW FIX
===================================== */
@media (max-width: 768px) {

    .content-right{
        display: none;
    }
    .order-btn{
         display: none;
    }
    .navbar {
  position: relative !important;
  padding: 14px 18px !important;
  background: #000 !important;
  backdrop-filter: none !important;
}

.nav-links {
  display: none !important;
  flex-direction: column !important;
  gap: 0 !important;
  position: absolute !important;
  width: 100% !important;
  top: 100% !important;
  left: 0 !important;
  background: #000 !important;
}

.nav-links.active {
  display: flex !important;
}

/* Kill hover dropdown system */
.dropdown:hover .dropdown-menu {
  all: unset;
}

/* Reset dropdown to mobile style */
.dropdown-menu {
  display: none !important;
  position: static !important;
  background: #000 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: 100% !important;
}

.dropdown.open .dropdown-menu {
  display: flex !important;
  flex-direction: column;
}
  /* ---------- GLOBAL RESET ---------- */
  html, body {
/* Prevents the 'side-to-side' wobble */
    overflow-x: hidden;
    position: relative;
    width: 100%;
    /* Smooths out 3D acceleration glitches */
    -webkit-font-smoothing: antialiased;
  }

  * {
    box-sizing: border-box;
    max-width: 100%;
  }

  body {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ===============================
   MOBILE NAVIGATION ONLY
================================*/

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: #000;
  position: relative;
  z-index: 1000;
}

/* LOGO */
.logo img {
  width: 95px;
  display: block;
}

/* HAMBURGER */
.menu-toggle {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

/* TO X */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* ===============================
   MENU PANEL
================================*/

.nav-links {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #000;
  display: none;
  flex-direction: column;
  padding: 0 18px;
}

.nav-links.active {
  display: flex;
}

.nav-links li {
  width: 100%;
  list-style: none;
}

.nav-links li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #111;
}

/* ===============================
   DROPDOWN (SAME STYLE)
================================*/

.dropdown-menu {
  display: none;
  flex-direction: column;
  width: 100%;
}

.dropdown.open .dropdown-menu {
  display: flex;
}

.dropdown-menu li a {
  font-size: 16px;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #111;
}

/* ARROW */

.dropdown-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s ease;
}

.dropdown.open .dropdown-icon {
  transform: rotate(-135deg);
}

/* ===== HERO SECTION ===== */
  .hero-section {
    height: auto;
    padding: 40px 20px 60px;
    text-align: center;
  }

  .container {
    flex-direction: column;
    gap: 40px;
  }

  .content-left {
    max-width: 100%;
  }

  .main-title {
    font-size: 1.8rem;
  }

  .sub-title {
    font-size: 1rem;
  }

  .description {
    font-size: 0.85rem;
  }

  .cta-row {
    flex-direction: column;
    gap: 15px;
  }

  /* ===== HERO IMAGE ===== */
  .content-right {
    flex-direction: column;
    gap: 20px;
  }

  .main-bag {
    width: 260px;
  }

  .side-menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-item {
    font-size: 0.65rem;
    padding: 8px 14px;
  }

 
 /* =====================================
   Mobile Horizontal Swipe – 1.5 Cards
===================================== */
  
   
  /* ===== CONSULTATION SECTION ===== */
  .consultation-section {
    padding: 60px 15px;
  }

  .consultation-info h2 {
    font-size: 26px;
  }

  .consultation-info p {
    font-size: 15px;
  }

  .consultation-form {
    padding: 25px;
  }

  .consultation-form input,
  .consultation-form textarea {
    font-size: 14px;
    padding: 12px;
  }

  /* ===== WHATSAPP FLOAT BUTTON ===== */
  .whatsapp-button {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button img {
    width: 48px;
    height: 48px;
  }
}

 