:root {
  --brand: #0b5ed7;
  --brand-dark: #084298;
  --bg-soft: #f7f9fc;
}

body {
  background: #fff;
  color: #1c1f26;
}

.navbar-brand {
  font-weight: 700;
  color: var(--brand-dark) !important;
}

.hero {
  background: var(--bg-soft);
  padding: 3rem 0;
  border-bottom: 1px solid #e9ecef;
}

.tool-card {
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  background: #fff;
}

.tool-card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.ifsc-code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--brand-dark);
}

.copy-btn {
  cursor: pointer;
}

.ad-slot {
  border: 1px dashed #ced4da;
  border-radius: 0.5rem;
  color: #adb5bd;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}

footer {
  background: #101828;
  color: #cbd5e1;
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
}

footer a {
  color: #e2e8f0;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .input-group.input-group-lg > .form-control,
  .input-group.input-group-lg > .btn {
    flex: 1 1 100%;
    width: 100%;
    border-radius: 0.375rem !important;
  }
  .input-group.input-group-lg > .form-control {
    margin-bottom: 0.5rem;
  }
}

.breadcrumb-nav {
  font-size: 0.9rem;
}

.bank-link:hover,
.bank-link:focus {
  font-weight: 700;
}

.faq-list {
  counter-reset: faq;
}

.faq-item h2::before {
  counter-increment: faq;
  content: counter(faq) ". ";
}

.navbar .navbar-nav .nav-link {
  border-radius: 0.375rem;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus-visible {
  background-color: #e7f0ff;
  color: var(--brand-dark);
}
