   * { 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%;
}
 /* ===============================
   Industries Section
================================ */

.industries-served {
    margin-top: 60px;
    max-width: 700px;
}

/* Headings */
.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.section-subtitle {
    color: #fff;
    margin-bottom: 25px;
    max-width: 520px;
    opacity: 0.9;
}

/* ===============================
   Slider Wrapper
================================ */

.industry-slider {
    overflow: hidden;
    width: 100%;
}

/* Slider Track */
.industry-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* Each Slide */
.industry-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr; /* FORCE EQUAL HEIGHT */
    gap: 10px;
}

/* ===============================
   Buttons (Equal Height)
================================ */

.industry-item {
    display: flex;                /* KEY FIX */
    align-items: center;          /* Vertical center */
    justify-content: center;      /* Horizontal center */
    min-height: 34px;             /* SAME HEIGHT */
    padding: 4px 6px;
    border: 1px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    font-size: 11px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    line-height: 1.2;
    white-space: normal;          /* Allow wrapping */
}

.industry-item:hover {
    background: #fff;
    color: #000;
}

/* ===============================
   Dots (Centered – NO HACKS)
================================ */

.industry-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.industry-dots span {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.industry-dots span.active {
    background: #fff;
}

/* ===============================
   Layout Helpers
================================ */

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.content-left {
    max-width: 520px;
}

/* ===============================
   Mobile – CLEAN & COMPLETE SLIDES
================================ */

@media (max-width: 768px) {

    .industry-slide {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-item {
        min-height: 38px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {

    .industry-slide {
        grid-template-columns: 1fr; /* ONE ITEM PER ROW */
    }

    .industry-item {
        min-height: 40px;
        font-size: 13px;
    }
}

/* Right Image */
.content-right img {
    max-width: 100%;
    height: auto;
}

 

/* Right Content Styles */
.content-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.product-wrapper {
    position: relative;
    text-align: center;
}

 

/* New outline */
.image-outline-wrapper {
    display: inline-block;
    padding: 8px;                /* gap between image and outline */
    border: 2px solid white;       /* outline color */
    border-radius: 50%;         /* slightly bigger than image */
    background: transparent;     /* keep gap transparent */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.main-bag {
    border-radius: 50%;          /* match image corners */
    display: block;
    width: 250px;   
}



 

/* 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;
}

/* ===== Grid Container ===== */
.restaurant-setup .container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ===== Intro ===== */
.intro-row {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.intro-row h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2933;
}

.intro-row p {
    font-size: 18px;
    color: #6b7280;
}

/* ===== Card ===== */
.setup-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%; /* SAME HEIGHT */
    transition: 0.3s ease;
}

.setup-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===== Image ===== */
.card-image {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Title ===== */
.setup-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

/* ===== Description ===== */
.setup-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-top: auto; /* Align text evenly */
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .intro-row h2 {
        font-size: 28px;
    }
}

     /* ==========================
   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;
}

/* --------------------------
   Responsive Adjustments
   -------------------------- */
@media (max-width: 768px) {
  .kitchen-equipment-section .section-header h2 {
    font-size: 28px;
  }

  .kitchen-equipment-section .section-header p {
    font-size: 15px;
  }

  .equipment-card img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .kitchen-equipment-section .section-header h2 {
    font-size: 24px;
  }

  .kitchen-equipment-section .section-header p {
    font-size: 14px;
  }

  .equipment-card img {
    height: 130px;
  }
}
  .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;
}




.projects-section {
  padding: 80px 6%;
  background: #f7f9fc;
  font-family: "Poppins", sans-serif;
}

/* Row 1 Layout */
.projects-top {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.projects-text {
  width: 50%;
}

.projects-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #111;
}

.projects-text p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
}

/* Comparison Slider */
.comparison-container {
  width: 50%;
}

.comparison-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.comparison-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-img {
  clip-path: inset(0 50% 0 0);
}

.slider {
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 0;
  appearance: none;
  height: 6px;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
}
/* Filter Row */
.projects-filter {
  display: flex;
  justify-content: center;   /* 👈 center horizontally */
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 18px;
  border-radius: 30px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1D435F;
  color: #fff;
  border-color: #1D435F;
}

/* Hide animation */
.project-card {
  transition: 0.4s ease;
}
/* ===============================
   PROJECT CARD CAPTION
================================ */

.project-card {
  position: relative;
}

.project-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 16px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.4),
    transparent
  );
  color: #fff;
  transition: 0.4s ease;
}

/* Title */
.project-caption h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

/* Subtitle */
.project-caption span {
  font-size: 13px;
  opacity: 0.85;
}

/* Desktop hover effect */
@media (min-width: 769px) {
  .project-caption {
    opacity: 0;
    transform: translateY(10px);
  }

  .project-card:hover .project-caption {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Row 2 Gallery */
.projects-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.project-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  transition: 0.4s;
}

.project-card:hover {
  transform: translateY(-8px);
}

.project-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .projects-top {
    flex-direction: column;
  }

  .projects-text, .comparison-container {
    width: 100%;
  }

  .projects-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .projects-gallery {
    grid-template-columns: 1fr;
  }

  .projects-text h2 {
    font-size: 28px;
  }
}


/* 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 */
@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
  }
}


.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 ===== */
 
  @media (max-width: 768px) {

  /* ===== HERO RESET ===== */
  .hero-section {
    height: auto;
    padding: 10px 16px 60px;
  }

  .hero-section .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  /* Hide right image fully */
  .content-right {
    display: none !important;
  }

  /* Headings */
  .section-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ===== INDUSTRY GRID FIX ===== */
  .industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    gap: 10px;
  }

  .industry-item {
    font-size: 13px;
    padding: 8px 6px;
  }
}

 
 /* =====================================
   Mobile Horizontal Swipe – 1.5 Cards
===================================== */
  
  /* Projects Gallery - Responsive Grid (Fixed card size) */
.projects-gallery {
    display: grid;
  gap: 16px;
    grid-template-columns: repeat(1, 1fr); /* Desktop: 4 cards per row */
}

.project-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transition: transform 0.3s ease;
   height: 260px;
}

.project-card img {
    width: 100%;
    height: 100%; /* fill the card */
    object-fit: cover;
}

/* Tablet */
@media (max-width: 900px) {
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
    }
}

/* Mobile */
@media (max-width: 500px) {
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
        gap: 12px;
    }

    .project-card {
        height: 220px; /* keep all cards same height */
    }
}

  .project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Optional: Professional overlay for the card */
  .card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
  }
 
  /* ===== 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;
  }
}
