:root {
  --brand: #0d6efd;
  --card-border: rgba(0,0,0,.08);

  /* Metallic blue gradient for underline */
  --metallic-blue: linear-gradient(90deg, #1c4cff, #2b8cff, #67d1ff, #2b8cff, #1c4cff);
}

html { scroll-behavior: smooth; }

.brand-logo{
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
}

.section-pad{
  padding: 64px 0;
}

.req{
  color: #ff6b6b;
  font-weight: 700;
}

/* ===== NAV underline highlight ===== */
.navbar .nav-link{
  position: relative;
  padding: 10px 4px;
  margin: 0 6px;
  color: rgba(255,255,255,.85);
}

.navbar .nav-link:hover{
  color: #fff;
}

/* ScrollSpy adds .active automatically */
.navbar .nav-link.active{
  color: #fff;
}

.navbar .nav-link.active::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--metallic-blue);
  box-shadow: 0 0 10px rgba(43, 140, 255, .35);
}

/* ===== Services cards ===== */
.service-row{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  background: #fff;
}

.service-icon{
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.12);
  color: var(--brand);
  font-size: 22px;
}

.service-title{
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.service-subtitle{
  font-size: 14px;
  font-weight: 600;
  color: rgba(0,0,0,.55);
  margin-bottom: 8px;
}

.service-desc{
  color: rgba(0,0,0,.65);
  line-height: 1.5;
}

.form-control::placeholder {
  color: rgba(0,0,0,.45);
  font-weight: 500;
}

.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #2b8cff;
}


/* ===== New Services Card Style ===== */
.service-card-new {
  padding: 32px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card-new:hover {
  transform: translateY(-4px);
}

/* Centered large icon */
.service-icon-lg {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,.12);
  color: #0d6efd;
  font-size: 30px;
}

/* Title */
.service-title {
  font-weight: 700;
  margin-top: 8px;
}

/* Paragraph */
.service-desc {
  color: rgba(0,0,0,.65);
  line-height: 1.6;
  margin-top: 12px;
}
