/*hover service grid css */

.serviceh-box-hov {
  text-align: center;
  margin-bottom: 40px;
}

.service-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align:center;
}

.service-section-desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.servicesh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.serviceh-box {
  position: relative;
  background: #dae6e7;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  text-align: center;
  padding: 30px 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  height:200px;
}

img.service-icon {
    width: 80px !important;
    margin-bottom: 30px;
}

.service-front h6 {
  font-size: 16px !important;
  font-weight: 500;
  color: #222;
  margin-bottom:20px;
}

.service-hover {
  position: absolute;
  inset: 0;
  background: #444;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}

.service-hover p {
  font-size: 15px;
  line-height: 1.4;
}

.serviceh-box:hover .service-hover {
  opacity: 1;
  transform: translateY(0);
}
.serviceh-box:hover .service-front {
  opacity: 0;
}