



.m1{
    padding: 50px;
    text-align: center;
}
.t1 h1{
    font-size: 45px;
    margin: 0 0 50px 0;
}
.d1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.d1 img{
	
	width:100px;
	
}
.d1 div{
    width: 150px;
}



.m2{
    padding: 50px;
    text-align: center;
}
.t2 h1{
    width: 100%;
    margin: 25px 0 40px 0;
    font-size: 45px;
}
.d2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.d2 div{
    width: 600px;
    text-align: left;
}
.d2 div a{
    text-decoration: none;
    color: black;
}
.d2 div img{
    border-radius: 5px;
    display: block;
    margin: 0 0 20px 0;
}
.d2 div p{
    margin: 20px 0 30px 0;
    font-size: 16px;
}




.m3{
    padding: 25px;
    margin: 100px 0 100px 0;
}
.d3{
    display: flex;
    justify-content: space-evenly;
}
.d3 div{
    width: 600px;
    overflow: hidden;
}
.d3 div h1{
    font-size: 45px;
}
.d3 div p{
    margin: 20px 0 30px 0;
    font-size: 20px;
}
.d3 div a{
   text-decoration: none;
   color: black;
}
.d3 div img{
    border-radius: 5px;
    display: block;
}


/* ===== Interior Work Steps ===== */
.m4{
  background: #eae7e3;
  padding: 40px 15px;
}

.work-title{
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.work-steps{
  display: flex;
  flex-direction: column;
  gap: 16px;          /* 👈 cards ke beech gap */
  max-width: 420px;
  margin: auto;
}

.step-card{
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 15px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.step-card span{
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #3683ab;   /* orange number */
  margin-bottom: 6px;
}

.step-card p{
  font-size: 16px;
  font-weight: 500;
  color: #222;
}


