/* Smooth dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  transition: all 0.3s ease-in-out;
}

footer .social-icons a {
  transition: color 0.3s ease, transform 0.3s ease;
}

footer .social-icons a:hover {
  color: #0d6efd;
  transform: scale(1.2);
}



.hero-banner {
  position: relative;
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRdz-Ezawd2eb2iGUs95k3fBPVMCP6rV4apTw&s'); /* Replace with your actual image */
  background-size: cover;
  background-position: center;
  height: 500px;
}

.hero-text {
  position: absolute;
  top: 120px;              /* push text down */
  left: 60px;              /* align slightly right from edge */
  color: #0a2740;          /* dark professional navy blue */
  text-align: left;
  max-width: 700px;        /* control text width */
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}


/* Service Cards Overlay */
/* Service card styles */
.service-box {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.service-box .label {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
  padding: 8px;
  font-weight: 600;
}

.service-box:hover {
  transform: scale(1.05);
}


/* .cleaning-section { */
  /* background-color: #f9f9fc;  */
  /* color: #212529; */
/* } */

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: black
}

.section-description {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.hero-text .btn {
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
}
