/* ===== SERVICE DETAIL IMPROVEMENTS ===== */

.service-detail-row {
  padding: 20px 22px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: all 0.25s ease;
}

.service-detail-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* icon circle */
.service-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #2b6cff, #1c4ed8);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 26px;
}

/* bullet list */
.service-points li {
  list-style: none;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
}

/* spacing on mobile */
@media (max-width: 768px) {
  .service-icon-wrap {
    margin-bottom: 15px;
  }
}
.mobile-menu-open {
  display: block !important;
}
@media (max-width: 991px) {
  #nav {
    display: none;
  }

  #nav.show-menu {
    display: block;
  }
}
@media (max-width: 991px) {
  #nav {
    display: none;
  }

  #nav.show-menu {
    display: block;
  }
}
/* Mobile navbar spacing fix */
@media (max-width: 991px) {
  .navbar {
    min-height: 70px;
  }

  .navbar-header,
  .navbar-brand {
    display: flex;
    align-items: center;
  }

  .navbar-toggler {
    margin-left: auto;
    padding: 8px 10px;
    border: none;
    box-shadow: none;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
}
@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 42px;
    width: auto;
  }
}
@media (max-width: 991px) {
  .navbar-default .container,
  .menu_area .container,
  .lg-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .navbar-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b3cdec !important;
  }
}
.navbar-toggler-icon {
  width: 0em !important;
}