html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f5f6f7;
}

/* Main fills remaining viewport height */
main.main {
  flex: 1;
  background: transparent;
}

/* Footer always at bottom, never shrinking */
footer.footer {
  flex-shrink: 0;
}

/* Kill Preloader – causes layout illusions */
#preloader {
  display: none !important;
}


html, body {
  background: #f5f6f7 !important;
}

section,
.section {
  background: transparent;
}

/* Cards & boxed content stay white */
.card,
.service-item,
.list-group-item {
  background: #ffffff;
}

/* Softer card shadow */
.card.border-0.shadow-sm {
  box-shadow: 0 10px 30px rgba(0,0,0,.06) !important;
}


.cb-tagbox {
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 12px;
  padding: .5rem .6rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
}

.cb-tagbox:focus-within {
  border-color: rgba(206,18,18,.35);
  box-shadow: 0 0 0 .25rem rgba(206,18,18,.15);
}

.cb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  align-items: center;
}

.cb-chip {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: rgba(206,18,18,.10);
  color: #ce1212;
  font-size: .875rem;
  user-select: none;
  cursor: pointer;
  border: 1px solid rgba(206,18,18,.15);
}

.cb-chip i {
  font-size: .9rem;
  line-height: 1;
}

.cb-taginput {
  border: 0;
  outline: 0;
  flex: 1;
  min-width: 180px;
  padding: .25rem .1rem;
  font-size: 1rem;
  background: transparent;
}

.cb-suggest {
  position: relative;
}

.cb-suggestlist {
  margin-top: .35rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.cb-suggestitem {
  padding: .55rem .75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cb-suggestitem:hover {
  background: rgba(0,0,0,.03);
}

.cb-suggestmuted {
  color: #6c757d;
  font-size: .85rem;
}


.service-item {
  background: #fff !important;
  border: 1px solid rgba(0,0,0,.06) !important;
  border-radius: 16px !important;
  padding: 24px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.06) !important;
}

.service-item .icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(206,18,18,.10);
}

.service-item h3 {
  margin-top: 12px;
  margin-bottom: 8px;
}

.service-item .readmore {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 10px;
}
