from Bootstrap grid system. It controls how much width the column takes on different screen sizes (mobile / laptop responsive design).Shape1 ( 🔹 Meaning of each part) Bootstrap divides a row into 12 columns.

1. col-xs-12

2. col-sm-12

3. col-md-3

🔹 Simple Visualization

📱 Mobile (xs, sm)

[ Address Input Field ] (full width)

💻 Desktop (md)

[ Address ] [ Name ] [ Phone ] [ Email ]
(25%) (25%) (25%) (25%)

Shape4

🔹 Example with 4 fields

<div class="row">
<div class="col-md-3">Address</div>
<div class="col-md-3">Name</div>
<div class="col-md-3">Phone</div>
<div class="col-md-3">Email</div>
</div>

👉 On desktop → 4 columns in one row
👉 On mobile → each will go
one below another