  * { 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%;
}
 
.container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.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;
}

.content-right .form-wrapper {
    background: #ffffff;
    padding: 35px;
    width: 400px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1e1e1e;
}

/* FORM ELEMENTS */
.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group textarea {
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #caa24d; /* luxury gold tone */
    box-shadow: 0 0 0 3px rgba(202, 162, 77, 0.15);
}

/* ===============================
   WHATSAPP BUTTON
================================ */
.whatsapp-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #25d366;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

 
 
 :root {
  --blue: #0078d4;
  --text-h: #111;
  --text-p: #555;
  --bg: #f7f9fb;
}

/* =========================
   SECTION & CONTAINER
========================= */
.process-overview-section {
  background: var(--bg);
  padding: 80px 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.process-overview-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* =========================
   LEFT SIDE – CONTENT
========================= */
.overview-content {
  order: 1;
  flex: 0 0 45%;
}

.overview-content h2 {
  font-size: 36px;
  color: var(--text-h);
  margin-bottom: 20px;
}

.overview-content p {
  font-size: 16px;
  color: var(--text-p);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* FEATURE CARDS */
.feature-cards {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.feature-cards .card {
  width: 200px;
  height: 120px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-cards .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* CTA BUTTON */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

/* =========================
   RIGHT SIDE – PROCESS
========================= */
.process-section {
  order: 2;
  flex: 0 0 48%;
  max-width: 38%;
  position: relative;
  overflow: hidden;
}

.process-container {
  position: relative;
}

/* PROCESS ROWS */
.process-row {
  display: flex;
  position: relative;
  margin-bottom: 60px;
}

.row-left {
  justify-content: flex-start;
}

.row-right {
  justify-content: flex-end;
}

.step-box {
  position: relative;
  width: 70%;
  display: flex;
  align-items: center;
}

/* CONTENT PILL */
.content-pill {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 40px;
  padding: 16px 36px;
  width: 100%;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.content-pill:hover {
  transform: translateY(-3px);
}

.row-left .content-pill {
  margin-left: 30px;
}

.row-right .content-pill {
  margin-right: 30px;
  text-align: right;
}

/* NUMBER CIRCLE */
.number-circle {
  width: 50px;
  height: 50px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 3;
}

.row-left .number-circle {
  left: 0;
}

.row-right .number-circle {
  right: 0;
}

/* PATH LINES */
.path-line {
  position: absolute;
  z-index: 1;
  border: 3px solid var(--blue);
}

.path-right {
  top: 40px;
  right: 23px;
  width: calc(30% + 3px);
  height: 150px;
  border-left: none;
  border-bottom: none;
}

.path-left {
  top: 40px;
  left: 23px;
  width: calc(30% + 3px);
  height: 150px;
  border-right: none;
  border-bottom: none;
}

/* TEXT INSIDE PILL */
.content-pill h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--text-h);
}

.content-pill p {
  margin: 0;
  font-size: 13px;
  color: var(--text-p);
  line-height: 1.6;
}

.process-row:last-child {
  margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */
 To give you a fully functional, production-ready version, I have consolidated the CSS and optimized the logic.

This revision uses a "Mobile-First" mindset for the process section: instead of fighting with absolute positioning, we use a clean vertical line on mobile and trigger the complex zigzag layout only on desktops.

The Complete Revised CSS
CSS
/* =========================
   VARIABLES & BASE
========================= */
:root {
  --blue: #007bff;
  --bg: #f8f9fa;
  --text-h: #222;
  --text-p: #555;
}

.process-overview-section {
  background: var(--bg);
  padding: 60px 20px;
  font-family: 'Segoe UI', Arial, sans-serif;
}

.process-overview-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Mobile default */
  gap: 40px;
}

/* =========================
   CONTENT SIDE
========================= */
.overview-content {
  text-align: center;
}

.overview-content h2 {
  font-size: 32px;
  color: var(--text-h);
  margin-bottom: 20px;
}

.overview-content p {
  font-size: 16px;
  color: var(--text-p);
  line-height: 1.7;
}

.feature-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
}

.feature-cards .card {
  width: 100%;
  max-width: 320px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* =========================
   PROCESS SECTION (MOBILE READY)
========================= */
.process-section {
  width: 100%;
  position: relative;
}

.process-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}

.step-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
}

.number-circle {
  width: 45px;
  height: 45px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  margin-bottom: -22px; /* Pulls pill up */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.content-pill {
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 20px;
  padding: 35px 20px 20px;
  width: 100%;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.content-pill h3 { margin: 0 0 8px; font-size: 18px; }
.content-pill p { margin: 0; font-size: 14px; line-height: 1.5; }

/* Hide paths on mobile */
.path-line { display: none; }

/* =========================
   DESKTOP REFINEMENTS (992px+)
========================= */
@media (min-width: 992px) {
  .process-overview-section .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .overview-content {
    flex: 0 0 45%;
    text-align: left;
  }

  .feature-cards {
    flex-direction: row;
  }

  .process-section {
    flex: 0 0 48%;
  }

  .process-row { margin-bottom: 80px; }
  
  .row-left { justify-content: flex-start; }
  .row-right { justify-content: flex-end; }

  .step-box { flex-direction: row; width: 85%; max-width: none; }
  
  .number-circle { 
    margin-bottom: 0; 
    position: absolute; 
    width: 50px; 
    height: 50px;
  }

  .row-left .number-circle { left: 0; }
  .row-right .number-circle { right: 0; }

  .content-pill { 
    padding: 20px 35px; 
    border-radius: 40px; 
  }

  .row-left .content-pill { margin-left: 30px; text-align: left; }
  .row-right .content-pill { margin-right: 30px; text-align: right; }

  /* Show paths only on desktop */
  .path-line {
    display: block;
    position: absolute;
    z-index: 1;
    border: 3px solid var(--blue);
  }

  .path-right {
    top: 40px;
    right: 23px;
    width: 40%;
    height: 130px;
    border-left: none;
    border-bottom: none;
  }

  .path-left {
    top: 40px;
    left: 23px;
    width: 40%;
    height: 130px;
    border-right: none;
    border-bottom: none;
  }
}

  
  .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;
}

/* 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-left{
        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);
}

 
 
 /* =====================================
   Mobile Horizontal Swipe – 1.5 Cards
===================================== */
  
 
  /* Container allows the gallery to bleed to the edge of the screen */
  .projects-scroll-container {
    margin: 0 -15px; /* Negative margin to touch phone edges */
    padding: 10px 15px 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* The "snap" effect */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }

  .projects-scroll-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }

  .projects-gallery {
    display: flex; /* Change from Grid to Flex for horizontal layout */
    gap: 15px;
  }

  .project-card {
    /* This math shows 1 full card + a 20% peek of the next card */
    flex: 0 0 80%; 
    scroll-snap-align: start; /* Locks card to the left on swipe */
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    aspect-ratio: 4 / 5; /* Vertical "portrait" cards look more premium on mobile */
  }

  .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;
  }
}

