#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    transition: transform 0.3s ease; /* Smooth transition for the effect */
}

#whatsapp-button:hover {
    transform: scale(1.1); /* Scale up the button slightly on hover */
}

#whatsapp-button img {
    width: 60px; /* Adjust the size as needed */
    height: 60px; /* Adjust the size as needed */
}
.services-section {
  padding: 80px 20px;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.sub-heading {
  text-transform: uppercase;
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.description {
  font-size: 16px;
  color: #444;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-box {
  background: #f4f4f4;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-box h3 {
  font-size: 20px;
  font-weight: 600 !important;
  color: #000;
  margin-bottom: 20px;
  min-height: 48px; /* NEW: Reserve space for 2 lines */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.view-details-btn {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.view-details-btn:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}