:root {
  --primary: #0f2a4a;
  --primary-light: #1a3f6e;
  --gold: #c9a227;
  --gold-light: #e0b840;
  --accent: #2c5282;
  --bg: #f5f7fa;
  --surface: #ffffff;
  --text: #2d3748;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --error: #e53e3e;
  --success: #38a169;
  --radius: 8px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --font-display: 'Merriweather', Georgia, 'Times New Roman', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.3;
}

/* Header */
.header {
  background: var(--primary);
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #fff;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.75rem;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  background: rgba(255, 255, 255, 0.15);
}

.nav .btn-nav {
  background: var(--gold);
  color: var(--primary);
  font-weight: 600;
}

.nav .btn-nav:hover {
  background: var(--gold-light);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(224, 184, 64, 0.22), transparent 42%),
    linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, #1d4e79 100%);
  color: #fff;
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-stats {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 0.9rem 1.4rem;
  min-width: 130px;
  backdrop-filter: blur(2px);
}

.hero-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-light);
  font-family: var(--font-display);
}

.hero-stat-label {
  display: block;
  font-size: 0.78rem;
  opacity: 0.9;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary {
  background: var(--gold);
  color: var(--primary);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Sections */
.section {
  padding: 3rem 1.5rem;
}

.section-alt {
  background: var(--surface);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.job-card {
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}/* Compact news cards (homepage grid) */

.card-compact {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
}

.card-compact .card-icon {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.card-compact h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.card-compact p {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

.card-compact .news-chip {
  margin-bottom: 0.3rem;
}

.card-compact .news-date {
  margin-bottom: 0.3rem;
}

.card-compact .btn {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
}

/* Auto news grid on homepage — makes ANY .card inside #news compact/square */

#news .form-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

#news .card {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 200px;
}

#news .card .card-icon {
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

#news .card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

#news .card p {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
}

#news .card .news-chip {
  margin-bottom: 0.3rem;
}

#news .card .news-date {
  margin-bottom: 0.3rem;
}

#news .card .btn {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
}

/* Forms */

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.15);
}

.form-group .error-msg {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: var(--error);
}

.form-group.has-error .error-msg {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Buttons in forms */
.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Success box */
.success-box {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.success-box h2 {
  color: var(--success);
  margin-bottom: 0.5rem;
}

.success-box .reg-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--error);
  margin: 1rem 0;
}

/* Documents */
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.doc-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
  transition: box-shadow 0.2s;
}

.doc-item:hover {
  box-shadow: var(--shadow);
}

.doc-icon {
  font-size: 1.5rem;
}

.doc-icon svg {
  width: 22px;
  height: 22px;
}

.doc-info {
  overflow: hidden;
}

.doc-info .doc-name {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.doc-info .doc-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 2rem 1.5rem 1rem;
  margin-top: auto;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer h4 {
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.4rem;
}

.footer a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.8rem;
  color: #a0aec0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .mobile-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
  }

  .nav.open {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .logo-subtitle {
    font-size: 0.65rem;
  }
}

/* Interest-rate table */
.rates-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rates-table th,
.rates-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.rates-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.rates-table tr:last-child td {
  border-bottom: none;
}

.rates-table td:last-child {
  font-weight: 600;
  color: var(--primary);
}

.rates-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

/* News chips */
.news-chip {
  display: inline-block;
  background: var(--gold-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.news-date {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

/* Calculators */
.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.calc-result {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #f0fff4;
  border: 1px solid #9ae6b4;
}

.calc-result.hidden {
  display: none;
}

.calc-result .amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}

.calc-result .amount-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Branch maps */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.map-card iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: var(--radius);
}

/* WhatsApp floating button (desktop) */
.wa-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 950;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s;
}

.wa-fab:hover {
  transform: translateY(-2px) scale(1.05);
}

.wa-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

/* Sticky mobile action bar */
.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  .wa-fab {
    display: none;
  }

  .mobile-action-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    background: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom));
    gap: 0.4rem;
  }

  .mab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.2rem;
    border-radius: var(--radius);
  }

  .mab-btn:active {
    background: rgba(255, 255, 255, 0.15);
  }

  .mab-icon {
    font-size: 1.15rem;
  }

  .mab-icon svg {
    width: 20px;
    height: 20px;
  }

  .mab-wa {
    background: rgba(37, 211, 102, 0.18);
  }

  body {
    padding-bottom: 62px;
  }
}

@media (max-width: 480px) {
  .calc-row {
    grid-template-columns: 1fr;
  }

  .map-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Small phones: stack cards full-width so nothing overflows */
@media (max-width: 480px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Google Translate widget (pages without a Hindi twin) */
.gt-wrap {
  max-width: 1200px;
  margin: 0.9rem auto 0;
  padding: 0 1.5rem;
  display: flex;
  justify-content: flex-end;
}

#google_translate_element .goog-te-gadget {
  font-family: inherit;
  font-size: 0.78rem;
  color: #64748b;
}

#google_translate_element .goog-te-gadget-simple {
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  padding: 0.3rem 0.55rem;
  background: #fff;
}

#google_translate_element .goog-te-combo {
  font-family: inherit;
  font-size: 0.85rem;
  padding: 0.2rem 0.3rem;
  border: 1px solid #cbd5e0;
  border-radius: 6px;
  background: #fff;
  color: var(--primary);
  max-width: 180px;
}

/* ---- AGM announcement popup (homepage, first visit, dismissible) ---- */
.agm-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.agm-popup[hidden] {
  display: none;
}
.agm-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 74, 0.78);
  backdrop-filter: blur(2px);
}
.agm-popup-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: min(92vw, 500px);
  max-height: 92vh;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: agm-pop-in 0.3s ease;
}
.agm-popup-card img {
  display: block;
  width: 100%;
  min-height: 0;
  flex: 0 1 auto;
  object-fit: contain;
  background: #fff;
}
.agm-popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(15, 42, 74, 0.8);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.agm-popup-close:hover,
.agm-popup-close:focus-visible {
  background: var(--gold);
  color: var(--primary);
}
.agm-popup-footer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: var(--primary);
  color: #fff;
}
.agm-popup-footer-text {
  font-size: 0.85rem;
  line-height: 1.3;
}
.agm-popup-meta {
  display: block;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.9;
}
.agm-popup-footer .btn {
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
body.agm-open {
  overflow: hidden;
}
@keyframes agm-pop-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 480px) {
  .agm-popup-footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== Accessibility: skip link + visible focus ===== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--primary, #0f2a4a);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 0.5rem 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}
:focus-visible {
  outline: 3px solid var(--accent, #d4af37);
  outline-offset: 2px;
}

/* ===== Rates page ===== */
.rates-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}
.rates-table th,
.rates-table td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.rates-table th {
  background: var(--primary, #0f2a4a);
  color: #fff;
  font-weight: 600;
}
.rates-table tr:nth-child(even) td {
  background: rgba(15, 42, 74, 0.04);
}

/* ===== Site search ===== */
.search-box {
  margin-bottom: 1rem;
}
.search-results {
  margin-top: 1rem;
  display: none;
}
.search-results.open {
  display: block;
}
.search-result {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  background: #fff;
}
.search-result a {
  font-weight: 600;
  color: var(--primary, #0f2a4a);
  text-decoration: none;
}
.search-result p {
  margin: 0.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted, #64748b);
}

/* ===== AGM popup countdown + calendar link ===== */
.agm-countdown {
  display: block;
  font-weight: 700;
  color: var(--primary, #0f2a4a);
  margin-top: 0.5rem;
}
.agm-cal-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--accent, #d4af37);
  text-decoration: none;
}
.agm-cal-link:hover {
  text-decoration: underline;
}

/* ===== Loan amortization table ===== */
.amort-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.9rem;
}
.amort-table th,
.amort-table td {
  text-align: right;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.amort-table th:first-child,
.amort-table td:first-child {
  text-align: left;
}
.amort-table th {
  background: rgba(15, 42, 74, 0.08);
  font-weight: 600;
}

/* ===== Print / save-as-PDF stylesheet ===== */
.print-only {
  display: none;
}

@media print {
  @page {
    margin: 1.2cm;
  }
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt;
    line-height: 1.45;
  }
  a {
    color: #000 !important;
    text-decoration: underline;
  }
  /* Hide navigation, footers, popups, chat buttons and interactive chrome. */
  header, .nav, .mobile-toggle, footer, .agm-popup, #agmPopup,
  [data-agm-dismiss], .back-to-top, .contact-form, form[data-custom-submit],
  .btn, .hero-actions, .popup, .cookie-banner {
    display: none !important;
  }
  iframe, .map, .video-wrap {
    display: none !important;
  }
  .container, .section, main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
  }
  /* Print utilities: add class="print-hide" to elements you don't want on paper. */
  .print-hide {
    display: none !important;
  }
  .print-show {
    display: block !important;
  }
  /* Show a clean print header (e.g. bank name + page title) when present. */
  .print-only {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 13pt;
    font-weight: 700;
  }
  .reg-number {
    border: 2px solid #000;
  }
  tr, img {
    page-break-inside: avoid;
  }
  h1, h2, h3 {
    page-break-after: avoid;
  }
}
