.container1{
  width: 100%;
  height: 100%;
  padding: 0 8%;
}

.container1 h1{
  text-align: center;
  padding-top: 10%;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.container1 h1::after{
  content:'';
  background: orangered;
  width:100px;
  height: 5px;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%);
}

.row1{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-column-gap:100px;
  grid-row-gap:50px;  
}
.service1{
  text-align: center;
  padding: 25px 10px;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  background: transparent;
  transition: transform 1.5s, background 0.5s;
  opacity: 0.9;
}
.service1 i{
  font-size: 40px;
  margin-bottom: 10px;
  color: orangered;
  /* text-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
  /* text-shadow: 2px 2px 6px #5d5d5d; */
}
.service1 h2{
  font-weight: 600;
  margin-bottom: 8px;
}
.service1 h3:hover{
  color: #fe5e00;
}

.service1:hover{
  background: orangered; 
  opacity: 0.9;
  color:grey;
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);  */
  transform: scale(1.05);
  background: rgb(255, 255, 255); /* orangered with reduced opacity */
  backdrop-filter: blur(10px); /* This creates the frosted glass effect */
  /* box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 8px 24px 0 rgba(0, 0, 0, 0.23); Slightly intensified shadow for better contrast */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.service1:hover i{
  color: #fe5e00;
}

.service1:hover h3{
  color: rgb(255, 0, 0);
}
.service1 p:hover{
  color: grey;
}

