



.m1{
  padding: 30px 20px;
    text-align: center;
}
.t1 h1{
    font-size: 45px;
    margin-bottom: 20px;
}
.d1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.d1 img{
	
	width:100px;
	
}
.d1 div{
    width: 150px;
}



.m2{
       padding: 30px 20px;
    text-align: center;
}
.t2 h1{
       width: 100%;
    margin: 15px 0 20px 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: 30px 20px;
    margin: 30px 0;   /* instead of 100px */
}
.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: grid;
  grid-template-columns: repeat(4, 1fr);  /* 3 columns */
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}
.overlay{
  flex-direction: column;   /* text + button vertical */
}

.overlay-btn{
  margin-top: 10px;
  padding: 8px 20px;
  background: #3683ab;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.overlay-btn:hover{
  background: #2f7396;
}
.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;
}


.work-steps{
  width: 100%;
  box-sizing: border-box;
}

/* Tablet & Mobile */
@media (max-width: 768px){
  .work-steps{
    grid-template-columns: repeat(2, 1fr);  /* 2 columns */
    max-width: 100%;
    padding: 0 12px;
  }

  .step-card{
    padding: 12px;
  }

  .step-card span{
    font-size: 18px;
  }

  .step-card p{
    font-size: 14px;
    line-height: 20px;
  }
  
   .d1{
    display: flex;
    flex-wrap: nowrap;          /* ❗ wrap band */
    overflow: hidden;
    width: 100%;
  }

  .d1 div{
    min-width: 100%;            /* ❗ ek time par sirf 1 item */
    text-align: center;
    flex-shrink: 0;
  }

  .d1 img{
    width: 120px;
    margin: auto;
  }

  .d1 h3{
    font-size: 18px;
    margin-top: 10px;
  }
  
  
}

/* Small mobile */
@media (max-width: 480px){
  .work-steps{
    grid-template-columns: 1fr;  /* 1 column only for very small phones */
  }
}